From 568f8d39dfebba70b594b35f8d06e97d172c3c00 Mon Sep 17 00:00:00 2001 From: Xaus Date: Tue, 14 Aug 2018 14:53:21 +0430 Subject: [PATCH] updated build gradle updated build gradle for less android warning in build time now minimum buildToolsVersion is 27.0.3 and compile must be replaced with implementation --- android/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 0b9bdd3..0acd445 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -2,12 +2,12 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 23 - buildToolsVersion "23.0.1" + compileSdkVersion 27 + buildToolsVersion "27.0.3" defaultConfig { minSdkVersion 16 - targetSdkVersion 22 + targetSdkVersion 27 versionCode 1 versionName "1.0" ndk { @@ -20,6 +20,6 @@ android { } dependencies { - compile 'com.facebook.react:react-native:+' + implementation 'com.facebook.react:react-native:+' }