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 23, 2025
1 parent e4e661f commit 3e43a61
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,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 3e43a61

Please sign in to comment.