Skip to content

Commit

Permalink
chore: use Java 17 to compile kotlin & java
Browse files Browse the repository at this point in the history
  • Loading branch information
siddarthkay committed Jan 16, 2024
1 parent 0ac61d8 commit 1f0ca41
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,12 @@ android {
compileSdkVersion rootProject.ext.compileSdkVersion

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

kotlinOptions {
jvmTarget = JavaVersion.VERSION_17
}

namespace "im.status.ethereum"
Expand Down

0 comments on commit 1f0ca41

Please sign in to comment.