From a3b2660b2ffd67d45751c9e5851a84dfc41e47f0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 3 Apr 2026 14:01:48 +0000 Subject: [PATCH] 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> --- android/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle.kts b/android/build.gradle.kts index 48d2219..2abca86 100644 --- a/android/build.gradle.kts +++ b/android/build.gradle.kts @@ -28,8 +28,8 @@ subprojects { } } tasks.withType().configureEach { - kotlinOptions { - jvmTarget = "17" + compilerOptions { + jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17) } } }