Skip to content

Commit

Permalink
NOJIRA: Set Java source and target compatibility back to 11 to align …
Browse files Browse the repository at this point in the history
…with SDK (#30)
  • Loading branch information
balazs-gerlei authored Nov 22, 2024
1 parent ebf7250 commit 2d4be58
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 @@ -61,12 +61,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}

kotlinOptions {
jvmTarget = 17
jvmTarget = 11
}
}

Expand Down

0 comments on commit 2d4be58

Please sign in to comment.