Skip to content

Commit

Permalink
Downgrade library java version (#7636)
Browse files Browse the repository at this point in the history
Closes #7635
  • Loading branch information
yogevbd authored Nov 9, 2022
1 parent e06ab96 commit 4f2f90a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lib/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
jvmTarget = JavaVersion.VERSION_1_8
}

flavorDimensions "RNN.reactNativeVersion"
Expand Down
4 changes: 2 additions & 2 deletions playground/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android {
ndkVersion "20.1.5948944"

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

defaultConfig {
Expand Down

0 comments on commit 4f2f90a

Please sign in to comment.