From 95abe63b67f9b546422b9ec1093ab4f0483f60d1 Mon Sep 17 00:00:00 2001 From: Nguyen Tien Dung Date: Thu, 22 Oct 2020 14:18:58 +0700 Subject: [PATCH] update targetSdkVersion - build.gradle --- android/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 8a174dc..94e78a3 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,12 +1,12 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 25 - buildToolsVersion "25.0.2" + compileSdkVersion 28 + buildToolsVersion "28.0.3" defaultConfig { minSdkVersion 16 - targetSdkVersion 25 + targetSdkVersion 28 versionCode 1 versionName "1.0" ndk { @@ -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:+" }