From a6dc69491efb19ea5accb5ba8ad2ea0220aecc32 Mon Sep 17 00:00:00 2001 From: Lanre Adelowo Date: Mon, 3 Dec 2018 11:13:00 +0100 Subject: [PATCH] Update build.grade to use implementation instead of compile `compile` has been replaced by `implementation`, see http://d.android.com/r/tools/update-dependency-configurations.html By the way, `compile` will be removed by the end of 2018. --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 184835289..efb5e3b73 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -37,7 +37,7 @@ android { } dependencies { - compile "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}" + implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}" //compile 'com.squareup.okhttp3:okhttp:+' //{RNFetchBlob_PRE_0.28_DEPDENDENCY} }