Skip to content

Commit

Permalink
Update jvm target to 17 for benchmark module
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Aug 26, 2023
1 parent 8431e19 commit 56bdda1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ android {
}

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

kotlinOptions {
jvmTarget = libs.versions.jvmTarget.get()
jvmTarget = "17"
}

buildTypes {
Expand Down

0 comments on commit 56bdda1

Please sign in to comment.