We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a91c23a commit a54b34aCopy full SHA for a54b34a
gradle/libs.versions.toml
@@ -1,6 +1,6 @@
1
[versions]
2
-agp = "8.0.0"
3
-kotlin = "1.8.0"
+agp = "8.0.1"
+kotlin = "1.8.21"
4
5
[libraries]
6
androidx-activity-ktx = "androidx.activity:activity-ktx:1.7.1"
ui/build.gradle.kts
@file:Suppress("UnstableApiUsage")
+import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
-import org.gradle.api.tasks.compile.JavaCompile
plugins {
alias(libs.plugins.android.application)
@@ -78,5 +78,5 @@ tasks.withType<JavaCompile>().configureEach {
78
}
79
80
tasks.withType<KotlinCompile>().configureEach {
81
- kotlinOptions.jvmTarget = JavaVersion.VERSION_11.toString()
+ compilerOptions.jvmTarget.set(JvmTarget.JVM_11)
82
0 commit comments