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:+" }