From 29453be31f07e888f493b1e3dfc4ce2031b3887e Mon Sep 17 00:00:00 2001 From: garrottkai Date: Wed, 19 Oct 2022 11:50:37 -0600 Subject: [PATCH] fix gradle 7 compatibility / bump default sdk config --- android/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index b73330d..cfc772a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,8 +1,8 @@ apply plugin: 'com.android.library' -def DEFAULT_COMPILE_SDK_VERSION = 23 -def DEFAULT_BUILD_TOOLS_VERSION = "23.0.1" -def DEFAULT_TARGET_SDK_VERSION = 22 +def DEFAULT_COMPILE_SDK_VERSION = 33 +def DEFAULT_BUILD_TOOLS_VERSION = "33.0.0" +def DEFAULT_TARGET_SDK_VERSION = 33 android { compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION @@ -17,5 +17,5 @@ android { } dependencies { - compile 'com.facebook.react:react-native:+' + implementation 'com.facebook.react:react-native:+' }