Skip to content

Commit

Permalink
chore: bump target sdk from 17 to 21
Browse files Browse the repository at this point in the history
  • Loading branch information
wax911 committed Feb 19, 2025
1 parent 9dfdbef commit 35cd211
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,13 @@ internal fun Project.configureAndroid(): Unit = baseExtension().run {
}

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

tasks.withType(KotlinJvmCompile::class.java) {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_17)
jvmTarget.set(JvmTarget.JVM_21)
}
}

Expand Down

0 comments on commit 35cd211

Please sign in to comment.