Skip to content

Commit

Permalink
NOJIRA: Set Java source and target compatibility back to 11 to align …
Browse files Browse the repository at this point in the history
…with SDK
  • Loading branch information
balazs-gerlei committed Nov 20, 2024
1 parent e285f6b commit 269b720
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ android {
}

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

kotlinOptions {
jvmTarget = 17
jvmTarget = 11
}
}

Expand Down

0 comments on commit 269b720

Please sign in to comment.