Skip to content

Commit

Permalink
fix deprecated warnings for JDK (#1735)
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb authored Jan 9, 2025
1 parent 6a4d195 commit cea2bf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ android {
// Older androids ( < API 26) use Java 7
// Sets Java compatibility to Java 8
// Needed to run JAVA 8 for backwards compatibility with Androids older than API 26, see #1165.
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}

sourceSets {
Expand Down

0 comments on commit cea2bf2

Please sign in to comment.