Skip to content

Commit dede9cd

Browse files
Update all dependencies
1 parent 34e2b39 commit dede9cd

File tree

5 files changed

+34
-34
lines changed

5 files changed

+34
-34
lines changed

Diff for: .github/workflows/android.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: macos-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v4
1212
- name: set up JDK 17
13-
uses: actions/setup-java@v1
13+
uses: actions/setup-java@v4
1414
with:
1515
java-version: 17
1616
- name: Build with Gradle

Diff for: android-app/build.gradle.kts

+10-10
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ android {
107107

108108

109109
dependencies {
110-
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.3")
110+
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.5")
111111

112-
implementation(platform("com.google.firebase:firebase-bom:26.2.0"))
112+
implementation(platform("com.google.firebase:firebase-bom:33.11.0"))
113113
implementation("com.google.firebase:firebase-analytics-ktx")
114-
implementation("androidx.activity:activity-compose:1.7.2")
114+
implementation("androidx.activity:activity-compose:1.10.1")
115115

116116
implementation(platform(libs.androidx.compose.bom))
117117
implementation(libs.androidx.compose.foundation)
@@ -136,20 +136,20 @@ dependencies {
136136
implementation(libs.koin.android)
137137
implementation(libs.koin.androidx.compose)
138138

139-
implementation("io.github.pushpalroy:jetlime:2.0.1")
139+
implementation("io.github.pushpalroy:jetlime:3.0.1")
140140

141141
// TODO: Added this as a temporary fix for a crash in ProgressIndicator, can be removed later.
142142
// Issue: https://github.com/JetBrains/compose-multiplatform/issues/4157
143-
implementation("androidx.compose.material3:material3-android:1.2.1")
143+
implementation("androidx.compose.material3:material3-android:1.3.1")
144144
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.7.1")
145-
implementation("com.google.maps.android:android-maps-utils:2.3.0")
145+
implementation("com.google.maps.android:android-maps-utils:3.11.2")
146146

147-
implementation("com.google.android.gms:play-services-location:16.0.0")
148-
implementation("com.google.android.gms:play-services-maps:18.0.2")
147+
implementation("com.google.android.gms:play-services-location:21.3.0")
148+
implementation("com.google.android.gms:play-services-maps:19.1.0")
149149

150150
testImplementation("junit:junit:4.13.2")
151-
androidTestImplementation("androidx.test.ext:junit:1.1.5")
152-
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
151+
androidTestImplementation("androidx.test.ext:junit:1.2.1")
152+
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
153153

154154
implementation(project(":SharedCode"))
155155
}

Diff for: ar/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ dependencies {
2929
implementation Kotlin.stdLib
3030

3131
// ARCore
32-
implementation 'com.google.ar:core:1.4.0'
33-
implementation 'de.javagl:obj:0.2.1'
32+
implementation 'com.google.ar:core:1.48.0'
33+
implementation 'de.javagl:obj:0.4.0'
3434
}

Diff for: gradle/libs.versions.toml

+19-19
Original file line numberDiff line numberDiff line change
@@ -7,40 +7,40 @@ kotlinx-dateTime = "0.6.1"
77

88

99
composeUiTooling = "1.3.1"
10-
androidGradlePlugin = "8.8.1"
11-
koin = "4.0.0"
12-
koinCompose = "4.0.0"
10+
androidGradlePlugin = "8.9.1"
11+
koin = "4.0.3"
12+
koinCompose = "4.0.3"
1313
koinComposeMultiplatform = "1.2.0-Beta4"
14-
ktor = "3.0.0"
15-
slf4j = "2.0.16"
14+
ktor = "3.1.2"
15+
slf4j = "2.0.17"
1616
sqlDelight = "2.0.2"
17-
kmpNativeCoroutines = "1.0.0-ALPHA-35"
17+
kmpNativeCoroutines = "1.0.0-ALPHA-41"
1818
googleServices = "4.4.2"
1919

20-
androidxActivity = "1.10.0"
20+
androidxActivity = "1.10.1"
2121
androidxComposeCompiler = "1.5.8"
2222
jbComposeCompiler = "1.5.4"
23-
androidxComposeBom = "2025.02.00"
24-
androidxNavigationCompose = "2.8.7"
23+
androidxComposeBom = "2025.03.01"
24+
androidxNavigationCompose = "2.8.9"
2525
uiToolingPreview = "1.7.8"
2626
androidxLifecycle = "2.8.7"
27-
imageLoader = "1.9.0"
27+
imageLoader = "1.10.0"
2828
osmdroidAndroid = "6.1.20"
29-
googleMapsCompose = "5.0.3"
29+
googleMapsCompose = "6.5.2"
3030

31-
composeMultiplatform = "1.7.0"
31+
composeMultiplatform = "1.8.0+check"
3232
accompanist = "0.36.0"
3333
coilCompose = "2.7.0"
34-
horologist = "0.6.20"
34+
horologist = "0.6.23"
3535
okhttp = "5.0.0-alpha.14"
3636

3737
junit = "4.13.2"
3838
androidxTestJUnit = "1.2.1"
3939
robolectric = "4.14.1"
4040
androidxTestCore = "1.6.1"
41-
mockito = "3.11.2"
41+
mockito = "5.2.0"
4242

43-
multiplatformSettings = "1.2.0"
43+
multiplatformSettings = "1.3.0"
4444
kermit = "2.0.5"
4545

4646
minSdk = "24"
@@ -50,10 +50,10 @@ coreKtx = "1.15.0"
5050
espressoCore = "3.6.1"
5151
appcompat = "1.7.0"
5252
material = "1.12.0"
53-
constraintlayout = "2.2.0"
53+
constraintlayout = "2.2.1"
5454
lifecycleLivedataKtx = "2.8.7"
55-
navigationFragmentKtx = "2.8.7"
56-
navigationUiKtx = "2.8.7"
55+
navigationFragmentKtx = "2.8.9"
56+
navigationUiKtx = "2.8.9"
5757

5858

5959
[libraries]
@@ -84,7 +84,7 @@ androidx-lifecycle-viewmodel-ktx = { module = "androidx.lifecycle:lifecycle-view
8484
androidx-tracing = "androidx.tracing:tracing:1.2.0"
8585

8686
splash-screen = "androidx.core:core-splashscreen:1.0.1"
87-
metrics = "androidx.metrics:metrics-performance:1.0.0-beta01"
87+
metrics = "androidx.metrics:metrics-performance:1.0.0-beta02"
8888

8989
imageLoader = { module = "io.github.qdsfdhvh:image-loader", version.ref = "imageLoader" }
9090
osmdroidAndroid = { module = "org.osmdroid:osmdroid-android", version.ref = "osmdroidAndroid" }

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Sun May 28 21:12:18 IST 2023
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)