From b5676fc5289c83dea09790fd4c331dc05d8a34d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Tr=C3=A9sor=20TEK=27s?= Date: Fri, 29 Jun 2018 12:56:37 +0100 Subject: [PATCH] Update build.gradle Change compile to implementation --- materialhelptutorial/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/materialhelptutorial/build.gradle b/materialhelptutorial/build.gradle index 9f492b3..c7609e3 100644 --- a/materialhelptutorial/build.gradle +++ b/materialhelptutorial/build.gradle @@ -30,11 +30,11 @@ dependencies { final SUPPORT_LIBRARY_VERSION = '27.0.2' compile fileTree(dir: 'libs', include: ['*.jar']) - testCompile 'junit:junit:4.12' - compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION" - compile "com.android.support:percent:$SUPPORT_LIBRARY_VERSION" - compile "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION" - compile 'com.github.bumptech.glide:glide:3.8.0' + testImplementation 'junit:junit:4.12' + Implementation "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION" + Implementation "com.android.support:percent:$SUPPORT_LIBRARY_VERSION" + Implementation "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION" + Implementation 'com.github.bumptech.glide:glide:3.8.0' }