1616plugins {
1717 id(" com.android.application" )
1818 id(" org.jetbrains.kotlin.android" )
19+ id(" org.jetbrains.kotlin.plugin.compose" )
1920}
2021
2122android {
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.1"
59- }
6058 packaging {
6159 resources {
6260 excludes + = " /META-INF/{AL2.0,LGPL2.1}"
@@ -66,15 +64,15 @@ android {
6664
6765dependencies {
6866
69- implementation(platform(" androidx.compose:compose-bom:2023.08 .00" ))
70- implementation(" androidx.activity:activity-compose:1.7.2 " )
67+ implementation(platform(" androidx.compose:compose-bom:2024.11 .00" ))
68+ implementation(" androidx.activity:activity-compose:1.9.3 " )
7169 implementation(" androidx.compose.material3:material3" )
7270 implementation(" androidx.compose.ui:ui" )
7371 implementation(" androidx.compose.ui:ui-graphics" )
7472 implementation(" androidx.compose.ui:ui-tooling-preview" )
75- implementation(" androidx.core:core-ktx:1.10.1 " )
76- implementation(" androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 " )
77- implementation(" androidx.navigation:navigation-compose:2.7.0 " )
73+ implementation(" androidx.core:core-ktx:1.15.0 " )
74+ implementation(" androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 " )
75+ implementation(" androidx.navigation:navigation-compose:2.8.4 " )
7876
7977 debugImplementation(" androidx.compose.ui:ui-test-manifest" )
8078 debugImplementation(" androidx.compose.ui:ui-tooling" )
0 commit comments