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 and SudoPlz committed May 30, 2023
1 parent 41ea1e1 commit a4b8630
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
Expand Up @@ -64,11 +64,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
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 a4b8630

Please sign in to comment.