From 78454c098a745690df2c38fbbea7d364f4f88714 Mon Sep 17 00:00:00 2001 From: Jesper <1jesper1@gmail.com> Date: Sat, 15 Feb 2025 23:48:07 +0100 Subject: [PATCH] Use a compatable version of androidx activity and androidx core to still support compilesdk 33 --- android/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 6ad2e4316..b1659d73e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,8 +1,8 @@ apply plugin: 'com.android.library' -def DEFAULT_COMPILE_SDK_VERSION = 30 +def DEFAULT_COMPILE_SDK_VERSION = 33 def DEFAULT_BUILD_TOOLS_VERSION = "29.0.3" -def DEFAULT_TARGET_SDK_VERSION = 30 +def DEFAULT_TARGET_SDK_VERSION = 33 def DEFAULT_MIN_SDK_VERSION = 16 android { @@ -22,6 +22,6 @@ dependencies { implementation 'com.facebook.react:react-native:+' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'com.github.yalantis:ucrop:2.2.6-native' - implementation 'androidx.activity:activity:1.9.2' - implementation "androidx.core:core:1.13.1" + implementation 'androidx.activity:activity:1.7.2' + implementation 'androidx.core:core:1.9.0' }