Merge pull request #1440 from davotoula/upgrade-agp

Upgrade agp and add JvmTarget.JVM_21 to Quartz
This commit is contained in:
Vitor Pamplona
2025-08-28 18:08:39 -04:00
committed by GitHub
2 changed files with 7 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
[versions]
accompanistAdaptive = "0.37.3"
activityCompose = "1.10.1"
agp = "8.12.1"
agp = "8.12.2"
android-compileSdk = "36"
android-minSdk = "26"
android-targetSdk = "36"

View File

@@ -4,7 +4,11 @@ plugins {
}
kotlin {
jvm()
jvm {
compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_1_8
}
}
// Target declarations - add or remove as needed below. These define
// which platforms this KMP module supports.
@@ -35,6 +39,7 @@ kotlin {
}
compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_1_8
freeCompilerArgs.add("-Xstring-concat=inline")
}
}