@@ -19,6 +19,7 @@ plugins {
1919 id ' kotlin-android'
2020 id ' kotlin-kapt'
2121 id ' dagger.hilt.android.plugin'
22+ id ' org.jetbrains.kotlin.plugin.compose'
2223}
2324
2425// Reads the Google maps key that is used in the AndroidManifest
@@ -83,10 +84,6 @@ android {
8384 shaders false
8485 }
8586
86- composeOptions {
87- kotlinCompilerExtensionVersion ' 1.5.13'
88- }
89-
9087 packagingOptions {
9188 // Multiple dependency bring these files in. Exclude them to enable
9289 // our test APK to build (has no effect on our AARs)
@@ -96,7 +93,7 @@ android {
9693}
9794
9895dependencies {
99- implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0 "
96+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 "
10097 implementation " com.google.android.libraries.maps:maps:3.1.0-beta"
10198 implementation " com.google.maps.android:maps-v3-ktx:3.4.0"
10299 constraints {
@@ -107,9 +104,9 @@ dependencies {
107104 }
108105
109106 implementation " androidx.activity:activity-compose:1.9.0"
110- implementation " androidx.appcompat:appcompat:1.6.1 "
107+ implementation " androidx.appcompat:appcompat:1.7.0 "
111108
112- def composeBom = platform(' androidx.compose:compose-bom:2024.05 .00' )
109+ def composeBom = platform(' androidx.compose:compose-bom:2024.06 .00' )
113110 implementation(composeBom)
114111 androidTestImplementation(composeBom)
115112 implementation " androidx.compose.runtime:runtime"
@@ -122,7 +119,7 @@ dependencies {
122119 debugImplementation " androidx.compose.ui:ui-tooling"
123120 debugImplementation " androidx.compose.ui:ui-test-manifest"
124121
125- def lifecycle_version = " 2.7.0 "
122+ def lifecycle_version = " 2.8.2 "
126123 implementation " androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version "
127124 implementation " androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version "
128125 implementation " com.google.dagger:hilt-android:2.51.1"
@@ -136,7 +133,7 @@ dependencies {
136133 androidTestImplementation " androidx.test:rules:1.5.0"
137134 androidTestImplementation " androidx.test.espresso:espresso-core:3.5.1"
138135 androidTestImplementation " androidx.test.ext:junit-ktx:1.1.5"
139- androidTestImplementation " org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0 "
136+ androidTestImplementation " org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1 "
140137 androidTestImplementation " com.google.dagger:hilt-android:2.51.1"
141138 androidTestImplementation " com.google.dagger:hilt-android-testing:2.51.1"
142139 kaptAndroidTest " com.google.dagger:hilt-compiler:2.51.1"
0 commit comments