Skip to content

Commit

Permalink
change to java 17 for the project
Browse files Browse the repository at this point in the history
  • Loading branch information
MostafaMohamed2002 committed May 2, 2024
1 parent bbfcb79 commit a6d904e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
buildFeatures {
viewBinding = true
Expand Down

0 comments on commit a6d904e

Please sign in to comment.