Skip to content

Commit

Permalink
Update to Java 20
Browse files Browse the repository at this point in the history
  • Loading branch information
Stypox committed Sep 7, 2023
1 parent fbc81d7 commit bb85b76
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,12 @@ android {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true

sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_20
targetCompatibility JavaVersion.VERSION_20
}

kotlinOptions {
jvmTarget = '20'
}

buildFeatures {
Expand Down

0 comments on commit bb85b76

Please sign in to comment.