Skip to content

Commit

Permalink
downgraded java version to work with new flutter version
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Guiotto dos Santos committed Nov 28, 2024
1 parent 04f619c commit 9653f83
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 9653f83

Please sign in to comment.