Skip to content

Commit 19138c5

Browse files
Update all dependencies
1 parent 065f224 commit 19138c5

File tree

5 files changed

+26
-26
lines changed

5 files changed

+26
-26
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@v3
1212
- name: set up JDK 17
13-
uses: actions/setup-java@v1
13+
uses: actions/setup-java@v3
1414
with:
1515
java-version: 17
1616
- name: Build with Gradle

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ tasks.withType<KotlinCompile> {
122122
dependencies {
123123
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.3")
124124

125-
implementation(platform("com.google.firebase:firebase-bom:26.2.0"))
125+
implementation(platform("com.google.firebase:firebase-bom:32.1.0"))
126126
implementation("com.google.firebase:firebase-analytics-ktx")
127-
implementation("androidx.activity:activity-compose:1.7.1")
127+
implementation("androidx.activity:activity-compose:1.7.2")
128128

129129

130130
with(Deps.Koin) {
@@ -150,7 +150,7 @@ dependencies {
150150
}
151151
implementation("io.github.pushpalroy:jetlime:1.0.3")
152152
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.7.1")
153-
implementation("com.google.maps.android:android-maps-utils:2.3.0")
153+
implementation("com.google.maps.android:android-maps-utils:3.4.0")
154154

155155
with(Deps.PlayServices) {
156156
implementation(maps)

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.37.0'
33+
implementation 'de.javagl:obj:0.4.0'
3434
}

Diff for: buildSrc/src/main/java/Dependencies.kt

+18-18
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,30 @@ object Versions {
44
const val kspPlugin = "1.9.0-Beta-1.0.11"
55
const val kotlinCoroutines = "1.7.1"
66
const val kotlinxSerialization = "1.5.1"
7-
const val ktor = "2.3.0"
8-
const val koinCore = "3.4.0"
9-
const val koinAndroid = "3.4.0"
10-
const val koinAndroidCompose = "3.4.4"
7+
const val ktor = "2.3.1"
8+
const val koinCore = "3.4.1"
9+
const val koinAndroid = "3.4.1"
10+
const val koinAndroidCompose = "3.4.5"
1111

1212
const val sqlDelight = "1.5.5"
1313
const val kotlinxDateTime = "0.4.0"
1414
const val multiplatformSettings = "1.0.0"
1515

16-
const val kmpNativeCoroutines = "1.0.0-ALPHA-10-kotlin-1.9.0-Beta"
16+
const val kmpNativeCoroutines = "1.0.0-ALPHA-10"
1717

1818
const val compose = "1.4.3"
19-
const val composeCompiler = "1.4.7-dev-k1.9.0-Beta-bb7dc8b44eb"
19+
const val composeCompiler = "1.4.7"
2020
const val navCompose = "2.5.3"
21-
const val accompanist = "0.29.0-alpha"
22-
const val mapsCompose = "2.11.0"
23-
const val composeMaterial3 = "1.0.0"
21+
const val accompanist = "0.30.1"
22+
const val mapsCompose = "2.11.4"
23+
const val composeMaterial3 = "1.1.0"
2424

25-
const val kermit = "1.0.0"
26-
const val slf4j = "1.7.30"
25+
const val kermit = "1.2.2"
26+
const val slf4j = "2.0.7"
2727

28-
const val junit = "4.12"
29-
const val mockito = "2.27.0"
30-
const val robolectric = "3.6.1"
28+
const val junit = "4.13.2"
29+
const val mockito = "5.2.0"
30+
const val robolectric = "4.10.3"
3131
}
3232

3333

@@ -38,8 +38,8 @@ object AndroidSdk {
3838
}
3939

4040
object Firebase {
41-
val core = "com.google.firebase:firebase-core:16.0.9"
42-
val performance = "com.google.firebase:firebase-perf:16.2.3"
41+
val core = "com.google.firebase:firebase-core:21.1.1"
42+
val performance = "com.google.firebase:firebase-perf:20.3.2"
4343
}
4444

4545

@@ -76,8 +76,8 @@ object Deps {
7676
}
7777

7878
object PlayServices {
79-
val location = "com.google.android.gms:play-services-location:16.0.0"
80-
val maps = "com.google.android.gms:play-services-maps:18.0.2"
79+
val location = "com.google.android.gms:play-services-location:21.0.1"
80+
val maps = "com.google.android.gms:play-services-maps:18.1.0"
8181
}
8282

8383
object Koin {

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.0-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)