File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import org.gradle.api.tasks.testing.logging.TestExceptionFormat
22import org.gradle.api.tasks.testing.logging.TestLogEvent
3+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
34
45plugins {
56 alias(libs.plugins.android.application)
@@ -13,6 +14,10 @@ plugins {
1314 alias(libs.plugins.compose.compiler)
1415}
1516
17+ kotlin {
18+ compilerOptions.jvmTarget.set(JvmTarget .JVM_17 )
19+ }
20+
1621android {
1722 namespace = " com.mitteloupe.whoami"
1823 compileSdk = libs.versions.compileSdk.get().toInt()
@@ -67,10 +72,6 @@ android {
6772 targetCompatibility = JavaVersion .VERSION_17
6873 }
6974
70- kotlinOptions {
71- jvmTarget = JavaVersion .VERSION_17 .toString()
72- }
73-
7475 buildFeatures {
7576 compose = true
7677 }
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ ktlint = "12.3.0"
3535detekt = " 1.23.8"
3636kotlinx-serialization-json = " 1.9.0"
3737minSdk = " 22"
38- targetSdk = " 35 "
39- compileSdk = " 35 "
38+ targetSdk = " 36 "
39+ compileSdk = " 36 "
4040
4141[libraries ]
4242androidx-material3 = { module = " androidx.compose.material3:material3" }
You can’t perform that action at this time.
0 commit comments