Replace compile with implementation to fix warning from gradle
This commit is contained in:
parent
ff5e176cfc
commit
7e28c55e7f
2 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@ apply plugin: 'com.android.library'
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'org.apache.commons:commons-compress:1.16.1'
|
implementation 'org.apache.commons:commons-compress:1.16.1'
|
||||||
javadocDeps 'org.apache.commons:commons-compress:1.16.1'
|
javadocDeps 'org.apache.commons:commons-compress:1.16.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,8 +26,8 @@ allprojects {
|
||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.16.1'
|
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.16.1'
|
||||||
compile 'com.android.support:support-v4:26.0.2'
|
implementation 'com.android.support:support-v4:26.0.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue