File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ dependencies {
120120 // providing dependencies to different parts of the application.
121121 // ---------------------------------------------------------------------------------------------
122122 implementation(libs.dagger)
123+ ksp(" org.jetbrains.kotlin:kotlin-metadata-jvm:2.4.0" )
123124 ksp(libs.hilt.android.compiler)
124125 implementation(libs.hilt.android)
125126
Original file line number Diff line number Diff line change 22# Project Configuration
33androidGradlePlugin = " 8.13.2"
44minSdk = " 24"
5- compileSdk = " 36 "
6- targetSdk = " 36 "
5+ compileSdk = " 37 "
6+ targetSdk = " 37 "
77versionCode = " 1"
88versionName = " 2.0.2" # {x-release-please-version}
99javaVersion = " 17"
1010
1111# Kotlin & Coroutines
12- kotlin = " 2.2.0 "
12+ kotlin = " 2.3.21 "
1313kotlinxCoroutinesTest = " 1.10.2"
1414kotlinxDatetime = " 0.7.1"
1515ksp = " 2.2.20-2.0.4"
@@ -36,8 +36,8 @@ material3 = "1.4.0"
3636materialIconsExtended = " 1.7.8"
3737
3838# Google Maps & Places
39- mapsCompose = " 7.0.0 "
40- mapsKtx = " 6.0 .0"
39+ mapsCompose = " 8.3.1 "
40+ mapsKtx = " 6.1 .0"
4141places = " 5.1.1"
4242playServicesMaps = " 20.0.0"
4343secretsGradlePlugin = " 2.0.1"
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ plugins {
2222
2323android {
2424 namespace = " com.example.app_utils_ktx"
25- compileSdk = 36
25+ compileSdk = libs.versions.compileSdk.get().toInt()
2626
2727 defaultConfig {
2828 applicationId = " com.example.app_utils_ktx"
29- minSdk = 23
30- targetSdk = 36
29+ minSdk = libs.versions.minSdk.get().toInt()
30+ targetSdk = libs.versions.targetSdk.get().toInt()
3131 versionCode = 1
3232 versionName = libs.versions.versionName.get()
3333
You can’t perform that action at this time.
0 commit comments