Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
  • Loading branch information
Copilot and feoh authored Apr 3, 2026
commit a3b2660b2ffd67d45751c9e5851a84dfc41e47f0
4 changes: 2 additions & 2 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ subprojects {
}
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions {
jvmTarget = "17"
compilerOptions {
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
}
}
}
Expand Down