From 2485a43827af6e4e5a3a860579db3ee6a5aefe39 Mon Sep 17 00:00:00 2001 From: andproger Date: Thu, 25 Oct 2018 00:08:45 +0300 Subject: [PATCH] replace (compile -> implementation) --- sampleapp/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sampleapp/build.gradle b/sampleapp/build.gradle index 6caf147..09ad526 100644 --- a/sampleapp/build.gradle +++ b/sampleapp/build.gradle @@ -20,7 +20,7 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:27.1.1' - compile project(':library') + implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation 'com.android.support:appcompat-v7:27.1.1' + implementation project(':library') }