From fde9fcd2b40a29f1d4898e9af1b37860dd532884 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Fri, 6 Mar 2020 21:27:04 +0100 Subject: [PATCH] build.gradle: Use 'implementation' dependency type, rather than 'compile'. --- build.gradle | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index c326909c..6a70b355 100644 --- a/build.gradle +++ b/build.gradle @@ -12,15 +12,15 @@ repositories { dependencies { //noinspection GradleDependency - compile 'com.squareup.okhttp3:okhttp:3.12.10' + implementation 'com.squareup.okhttp3:okhttp:3.12.10' //noinspection GradleDependency - compile 'com.squareup.okhttp3:logging-interceptor:3.12.10' - compile 'com.google.guava:guava:28.2-android' - compile 'org.slf4j:slf4j-api:1.7.30' - compile 'com.google.code.findbugs:jsr305:3.0.2' - compile 'org.json:json:20090211' // provided by Android - compile 'net.sf.kxml:kxml2:2.3.0' // provided by Android - testCompile 'junit:junit:4.13' + implementation 'com.squareup.okhttp3:logging-interceptor:3.12.10' + implementation 'com.google.guava:guava:28.2-android' + implementation 'org.slf4j:slf4j-api:1.7.30' + implementation 'com.google.code.findbugs:jsr305:3.0.2' + implementation 'org.json:json:20090211' // provided by Android + implementation 'net.sf.kxml:kxml2:2.3.0' // provided by Android + testImplementation 'junit:junit:4.13' testRuntime 'org.slf4j:slf4j-jdk14:1.7.30' }