Replace compile with implementation to fix warning from gradle

This commit is contained in:
Sylvain Berfini 2018-07-24 16:13:36 +02:00
parent ff5e176cfc
commit 7e28c55e7f
2 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ apply plugin: 'com.android.library'
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'
}

View file

@ -26,8 +26,8 @@ allprojects {
apply plugin: 'com.android.library'
dependencies {
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.16.1'
compile 'com.android.support:support-v4:26.0.2'
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.16.1'
implementation 'com.android.support:support-v4:26.0.2'
}