Skip to content

Commit

Permalink
Trying again with Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
1gravity committed May 29, 2023
1 parent 869d139 commit bb2d2ee
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions RTEditor-Demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ android {
}

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

kotlin {
jvmToolchain(11)
jvmToolchain(17)
}

buildFeatures {
Expand Down
8 changes: 6 additions & 2 deletions RTEditor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ android {
}

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

kotlin {
jvmToolchain(17)
}
}

Expand Down

0 comments on commit bb2d2ee

Please sign in to comment.