Skip to content

Commit 73e38da

Browse files
committed
Sdk 35 and compiler plugin
1 parent 25303c8 commit 73e38da

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@
1616
plugins {
1717
id("com.android.application")
1818
id("org.jetbrains.kotlin.android")
19+
id("org.jetbrains.kotlin.plugin.compose")
1920
}
2021

2122
android {
2223
namespace = "com.example.lunchtray"
23-
compileSdk = 34
24+
compileSdk = 35
2425

2526
defaultConfig {
2627
applicationId = "com.example.lunchtray"
2728
minSdk = 24
28-
targetSdk = 34
29+
targetSdk = 35
2930
versionCode = 1
3031
versionName = "1.0"
3132

@@ -54,9 +55,6 @@ android {
5455
buildFeatures {
5556
compose = true
5657
}
57-
composeOptions {
58-
kotlinCompilerExtensionVersion = "1.5.15"
59-
}
6058
packaging {
6159
resources {
6260
excludes += "/META-INF/{AL2.0,LGPL2.1}"

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ plugins {
1818
id("com.android.application") version "8.7.3" apply false
1919
id("com.android.library") version "8.7.3" apply false
2020
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
21+
id("org.jetbrains.kotlin.plugin.compose") version "2.1.0" apply false
2122
}

0 commit comments

Comments
 (0)