Skip to content

Commit 4f2f90a

Browse files
authored
Downgrade library java version (#7636)
Closes #7635
1 parent e06ab96 commit 4f2f90a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ android {
6565
}
6666
}
6767
compileOptions {
68-
sourceCompatibility JavaVersion.VERSION_11
69-
targetCompatibility JavaVersion.VERSION_11
68+
sourceCompatibility JavaVersion.VERSION_1_8
69+
targetCompatibility JavaVersion.VERSION_1_8
7070
}
7171
kotlinOptions {
72-
jvmTarget = JavaVersion.VERSION_11
72+
jvmTarget = JavaVersion.VERSION_1_8
7373
}
7474

7575
flavorDimensions "RNN.reactNativeVersion"

playground/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ android {
2020
ndkVersion "20.1.5948944"
2121

2222
compileOptions {
23-
sourceCompatibility JavaVersion.VERSION_11
24-
targetCompatibility JavaVersion.VERSION_11
23+
sourceCompatibility JavaVersion.VERSION_1_8
24+
targetCompatibility JavaVersion.VERSION_1_8
2525
}
2626

2727
defaultConfig {

0 commit comments

Comments
 (0)