Skip to content

Commit 4408006

Browse files
committed
redo react native 73 support
1 parent 1d86865 commit 4408006

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/android/app/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ def safeExtGetFallbackLowerBound(prop, fallback) {
1212
Math.max(safeExtGet(prop,fallback),fallback)
1313
}
1414

15-
def DEFAULT_COMPILE_SDK_VERSION = 34
15+
def DEFAULT_COMPILE_SDK_VERSION = 33
1616
def DEFAULT_MIN_SDK_VERSION = 21
17-
def DEFAULT_TARGET_SDK_VERSION = 34
17+
def DEFAULT_TARGET_SDK_VERSION = 33
1818
def DEFAULT_KOTLIN_VERSION = "1.5.31"
1919
def DEFAULT_KOTLIN_STDLIB = 'kotlin-stdlib-jdk8'
2020
def kotlinVersion = safeExtGet("RNNKotlinVersion", DEFAULT_KOTLIN_VERSION)
@@ -62,8 +62,8 @@ android {
6262
}
6363
}
6464
compileOptions {
65-
sourceCompatibility JavaVersion.VERSION_17
66-
targetCompatibility JavaVersion.VERSION_17
65+
sourceCompatibility JavaVersion.VERSION_1_8
66+
targetCompatibility JavaVersion.VERSION_1_8
6767
}
6868
kotlinOptions {
6969
jvmTarget = JavaVersion.VERSION_17
@@ -172,14 +172,14 @@ List reactNativeVersionComponents(rnPackageJsonFile) {
172172

173173
dependencies {
174174

175-
implementation "androidx.core:core-ktx:1.6.1"
175+
implementation "androidx.core:core-ktx:1.6.0"
176176
implementation "org.jetbrains.kotlin:$kotlinStdlib:$kotlinVersion"
177177
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinCoroutinesCore"
178-
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
178+
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
179179

180-
implementation 'androidx.appcompat:appcompat:1.6.1'
181-
implementation 'androidx.annotation:annotation:1.7.1'
182-
implementation 'com.google.android.material:material:1.11.0'
180+
implementation 'androidx.appcompat:appcompat:1.3.1'
181+
implementation 'androidx.annotation:annotation:1.2.0'
182+
implementation 'com.google.android.material:material:1.2.0-alpha03'
183183

184184
implementation 'com.github.wix-playground:ahbottomnavigation:3.3.0'
185185
// implementation project(':AHBottomNavigation')

0 commit comments

Comments
 (0)