From e833e2202997d5b02949f853baebb21832284e2b Mon Sep 17 00:00:00 2001 From: Cinna Date: Thu, 20 Dec 2018 12:51:04 +0330 Subject: [PATCH] Update build.gradle Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be removed at the end of 2018. --- android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 12ceac3..6157dfc 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -34,7 +34,7 @@ repositories { } dependencies { - compile 'com.facebook.react:react-native:+' - compile 'com.facebook.fresco:fresco:0.11.0' - compile 'me.relex:photodraweeview:1.0.0' + implementation 'com.facebook.react:react-native:+' + implementation 'com.facebook.fresco:fresco:0.11.0' + implementation 'me.relex:photodraweeview:1.0.0' }