Skip to content

Commit

Permalink
Обновление используемой версии JAVA до 11.
Browse files Browse the repository at this point in the history
  • Loading branch information
n08i40k committed Oct 5, 2024
1 parent 43cb667 commit dde7f3e
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 @@ -51,11 +51,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "11"
}
buildFeatures {
compose = true
Expand Down

0 comments on commit dde7f3e

Please sign in to comment.