From 35074a587d370830381f9b030db1b356b2de937f Mon Sep 17 00:00:00 2001 From: Madushan Siriwardena <2970078+madushans@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:17:46 +1300 Subject: [PATCH] 'compile' is deprecated. updated gradle instructions so it doesnt trigger warnings. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b825220..1db6a77 100644 --- a/README.md +++ b/README.md @@ -37,14 +37,14 @@ THe configurations are more visible with FitBest, which will decide which bound ### How to use JCropImageView -A) Simply include the repository and dependency in your build.gradle file +A) Simply include the repository and dependency in your app's build.gradle file ``` repositories { mavenCentral() } dependencies { - compile 'com.github.jimcoven:jcropimageview:0.22' + implementation 'com.github.jimcoven:jcropimageview:0.22' } ```