Skip to content

Commit a3b2660

Browse files
Copilotfeoh
andauthored
Fix deprecated kotlinOptions DSL in android/build.gradle.kts
Agent-Logs-Url: https://github.com/feoh/linkdqueue/sessions/f03319dd-1ceb-4a72-b06a-66fa9e224a1a Co-authored-by: feoh <330070+feoh@users.noreply.github.com>
1 parent 1959ebd commit a3b2660

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

android/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ subprojects {
2828
}
2929
}
3030
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
31-
kotlinOptions {
32-
jvmTarget = "17"
31+
compilerOptions {
32+
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
3333
}
3434
}
3535
}

0 commit comments

Comments
 (0)