Skip to content

Commit

Permalink
build!: Downgrade Java to Java 8 (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
witwash authored Jan 10, 2025
1 parent 4a3db2c commit 61dba6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kiosk_mode/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ android {
compileSdk = 34

compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_21
jvmTarget = JavaVersion.VERSION_1_8
}

sourceSets {
Expand Down

0 comments on commit 61dba6e

Please sign in to comment.