From 5e89abded6c7eb9d9edb62ce320b16f4f8694e70 Mon Sep 17 00:00:00 2001 From: Matteo Innocenti Date: Thu, 10 Jan 2019 12:11:26 +0100 Subject: [PATCH] Replaced compile with implementation, bumped buildToolsVersion to "28.0.3" --- android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 40f4f265c..440e813b7 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' android { compileSdkVersion 27 - buildToolsVersion "23.0.1" + buildToolsVersion "28.0.3" defaultConfig { minSdkVersion 16 @@ -22,6 +22,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:+' }