From b0946ec8a3869ea67123811e3194e564ce8f8852 Mon Sep 17 00:00:00 2001 From: Shanmugasanthosh Date: Mon, 26 Nov 2018 17:45:30 +0530 Subject: [PATCH] Update compile to implementation --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c75c04e..c67ea34 100644 --- a/README.md +++ b/README.md @@ -30,12 +30,12 @@ Based on your IDE you can import library in one of the following ways ##### Gradle: Add the dependency in your `build.gradle` file. Add it alongside the `no-op` variant to isolate Gander from release builds as follows: ```gradle -debugCompile 'com.ashokvarma.android:gander:1.3.3' -releaseCompile 'com.ashokvarma.android:gander-no-op:1.3.3' +debugImplementation 'com.ashokvarma.android:gander:1.3.3' +releaseImplementation 'com.ashokvarma.android:gander-no-op:1.3.3' ``` If you want this in library in both release and compile, then try this : ```gradle -compile 'com.ashokvarma.android:gander:1.3.3' +implementation 'com.ashokvarma.android:gander:1.3.3' ```