From 51b9b4c85aa22d6a48669a239c682fc6e03dd3f5 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Sat, 15 Aug 2020 11:32:38 +0200 Subject: [PATCH] build.gradle: Replace 'compile' with 'implementation' WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be removed in version 5.0 of the Android Gradle plugin. For more information, see http://d.android.com/r/tools/update-dependency-configurations.html. --- android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 8a174dc..72a584e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -16,6 +16,6 @@ android { } dependencies { - compile fileTree(include: ['*.jar'], dir: 'libs') - compile "com.facebook.react:react-native:+" + implementation fileTree(include: ['*.jar'], dir: 'libs') + implementation "com.facebook.react:react-native:+" }