Skip to content

Commit 78e046a

Browse files
committed
chore: update maps dependencies to maps-ktx 6.1.0, maps-compose 8.3.1, and android-maps-utils 5.0.0-rc03
1 parent e6ead25 commit 78e046a

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

FireMarkers/app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# Project Configuration
33
androidGradlePlugin = "8.13.2"
44
minSdk = "24"
5-
compileSdk = "36"
6-
targetSdk = "36"
5+
compileSdk = "37"
6+
targetSdk = "37"
77
versionCode = "1"
88
versionName = "2.0.2" # {x-release-please-version}
99
javaVersion = "17"
1010

1111
# Kotlin & Coroutines
12-
kotlin = "2.2.0"
12+
kotlin = "2.3.21"
1313
kotlinxCoroutinesTest = "1.10.2"
1414
kotlinxDatetime = "0.7.1"
1515
ksp = "2.2.20-2.0.4"
@@ -36,8 +36,8 @@ material3 = "1.4.0"
3636
materialIconsExtended = "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"
4141
places = "5.1.1"
4242
playServicesMaps = "20.0.0"
4343
secretsGradlePlugin = "2.0.1"

snippets/app-utils-ktx/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ plugins {
2222

2323
android {
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

0 commit comments

Comments
 (0)