Skip to content

Commit

Permalink
Target SDK 34 for compatibility with Java 17 - Fixes #3298 (#3302)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone authored Dec 22, 2024
1 parent 91af574 commit 075234d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions java/test/android/controller/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,13 @@ android {

defaultConfig {
applicationId "com.zeroc.testcontroller"
minSdkVersion 24
minSdkVersion 34 // SDK 34 required for Java 17 compatibility
targetSdkVersion 34
multiDexEnabled true // Necessary otherwise we'd exceed the 64K DEX limit.
compileOptions {
sourceCompatibility "1.17"
targetCompatibility "1.17"
// Sets Java compatibility to Java 17
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}

Expand Down

0 comments on commit 075234d

Please sign in to comment.