From e70e3dddbd3a5454b5891076f9521091f371b3f7 Mon Sep 17 00:00:00 2001 From: ardevd Date: Mon, 29 Apr 2019 09:19:17 +0200 Subject: [PATCH] gradle: replace use of obsolete 'compile' configuration. (#532) 'compile' is obsolete and has been replaced with 'implementation' and 'api'. Signed-off-by: ardevd --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index b99913a43..06329d371 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -146,7 +146,7 @@ dependencies { implementation ('com.gitlab.bitfireAT:dav4jvm:f2078bc846', { exclude group: 'org.ogce', module: 'xpp3' // Android comes with its own XmlPullParser }) - compile 'org.conscrypt:conscrypt-android:2.0.0' + implementation 'org.conscrypt:conscrypt-android:2.0.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'