From fbb3cc75f6bb39cc28f793d58a856f46086c4f5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20M=C3=A9a?= Date: Thu, 22 Jan 2026 14:37:28 -0500 Subject: [PATCH 1/2] APG 9.0.0 migration --- build.gradle | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/build.gradle b/build.gradle index 6bdec4f..255440c 100644 --- a/build.gradle +++ b/build.gradle @@ -13,16 +13,10 @@ java { targetCompatibility = rootProject.javaVersion toolchain.languageVersion = JavaLanguageVersion.of(rootProject.javaToolchainVersion.toString()) } -compileKotlin { - kotlinOptions { +kotlin { + compilerOptions { jvmTarget = rootProject.javaVersion - // allWarningsAsErrors = true // replaced by "DeprecatedCall" in lint - } -} -compileTestKotlin { - kotlinOptions { - jvmTarget = rootProject.javaVersion - // allWarningsAsErrors = true // replaced by "DeprecatedCall" in lint + allWarningsAsErrors = true // replaced by "DeprecatedCall" in lint } } From d5323444aa52cae773b4c14009d600f901d95144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20M=C3=A9a?= Date: Thu, 22 Jan 2026 14:42:36 -0500 Subject: [PATCH 2/2] Comment out allWarningsAsErrors in build.gradle --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 255440c..65d883b 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ java { kotlin { compilerOptions { jvmTarget = rootProject.javaVersion - allWarningsAsErrors = true // replaced by "DeprecatedCall" in lint + // allWarningsAsErrors = true // replaced by "DeprecatedCall" in lint } } @@ -38,4 +38,4 @@ test { events("failed") } } -} \ No newline at end of file +}