Skip to content

Commit

Permalink
Revert to Java 17
Browse files Browse the repository at this point in the history
F-Droid does not support Java 20 yet
  • Loading branch information
Stypox committed Sep 9, 2023
1 parent bb85b76 commit 7d30e98
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 @@ -45,12 +45,12 @@ android {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true

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

kotlinOptions {
jvmTarget = '20'
jvmTarget = '17'
}

buildFeatures {
Expand Down

0 comments on commit 7d30e98

Please sign in to comment.