Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
FeiChen-okta committed Oct 2, 2024
1 parent 92210eb commit 2eadcf7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ allprojects {
force("org.json:json:20240303")
force("com.google.guava:guava:33.3.0-jre")
force("androidx.room:room-runtime:${Version.room}")
force("com.google.android.gms:play-services-basement:18.4.0")
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/java/Version.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
*/
object Version {
const val kotlin = "2.0.20"
const val kotlinSerialization = "1.7.2"
const val coroutine = "1.8.1"
const val kotlinSerialization = "1.7.3"
const val coroutine = "1.9.0"
const val room = "2.6.1"
const val extJunit = "1.2.1"
const val archLifecycleVersion = "2.8.6"
const val compose = "1.7.2"
const val compose = "1.7.3"
const val devicesAuthenticator = "1.0.41"
const val devicesCore = "1.0.41"
const val devicesStorage = "1.0.41"
Expand Down
2 changes: 1 addition & 1 deletion devices-push/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ dependencies {
testImplementation("org.robolectric:robolectric:4.13")
testImplementation("com.squareup.okhttp3:mockwebserver:4.12.0")
testImplementation("io.mockk:mockk:1.13.12")
testImplementation("org.hamcrest:hamcrest-library:2.2")
testImplementation("org.hamcrest:hamcrest-library:3.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-serialization-json:${Version.kotlinSerialization}")
testImplementation("org.jetbrains.kotlinx:kotlinx-serialization-properties:${Version.kotlinSerialization}")
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions push-sample-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ dependencies {
implementation("androidx.compose.ui:ui-tooling-preview:${Version.compose}")
implementation("androidx.compose.runtime:runtime:${Version.compose}")

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.8.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.9.0")

implementation("com.jakewharton.timber:timber:5.0.1")

// Firebase BoM
implementation(platform("com.google.firebase:firebase-bom:33.3.0"))
implementation(platform("com.google.firebase:firebase-bom:33.4.0"))
implementation("com.google.firebase:firebase-messaging-ktx")
implementation("androidx.security:security-crypto-ktx:1.1.0-alpha06")
}

0 comments on commit 2eadcf7

Please sign in to comment.