Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("org.jetbrains.kotlin.plugin.serialization")
id("org.jetbrains.kotlinx.kover") version "0.9.8"
id("org.jetbrains.kotlinx.kover") version "0.9.9"
id("com.google.gms.google-services") apply false
}

Expand Down Expand Up @@ -147,32 +147,32 @@ kover {
}

dependencies {
implementation("dev.hotwire:core:1.2.8")
implementation("dev.hotwire:navigation-fragments:1.2.8")
implementation("dev.hotwire:core:1.3.1")
implementation("dev.hotwire:navigation-fragments:1.3.1")
// Already in the runtime graph via navigation-fragments; declared so the
// in-place pull-to-refresh override can type against SwipeRefreshLayout.
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
implementation("com.google.android.material:material:1.12.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1")
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.2.0")
implementation("com.google.android.material:material:1.14.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.11.0")

// Firebase Cloud Messaging client. The BoM pins every Firebase artifact's
// version together; declared unconditionally so the app compiles the same
// on forks (see the conditional google-services plugin above) — without a
// google-services.json, Firebase just stays uninitialized at runtime and
// push is a no-op.
implementation(platform("com.google.firebase:firebase-bom:34.16.0"))
implementation(platform("com.google.firebase:firebase-bom:34.17.0"))
implementation("com.google.firebase:firebase-messaging")

testImplementation("junit:junit:4.13.2")
testImplementation("org.robolectric:robolectric:4.16.1")
testImplementation("androidx.test:core-ktx:1.7.0")
testImplementation("org.assertj:assertj-core:3.26.3")
testImplementation("com.squareup.okhttp3:mockwebserver:5.3.2")
testImplementation("org.assertj:assertj-core:3.27.7")
testImplementation("com.squareup.okhttp3:mockwebserver:5.4.0")

androidTestImplementation("androidx.test.ext:junit-ktx:1.3.0")
androidTestImplementation("androidx.test:runner:1.7.0")
androidTestImplementation("androidx.test:rules:1.7.0")
androidTestImplementation("androidx.test.espresso:espresso-core:3.7.0")
androidTestImplementation("androidx.test.espresso:espresso-web:3.7.0")
androidTestImplementation("com.squareup.okhttp3:mockwebserver:5.3.2")
androidTestImplementation("com.squareup.okhttp3:mockwebserver:5.4.0")
}
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id("com.android.application") version "8.13.2" apply false
id("org.jetbrains.kotlin.android") version "2.3.0" apply false
id("org.jetbrains.kotlin.plugin.serialization") version "2.3.0" apply false
id("org.jetbrains.kotlin.android") version "2.4.10" apply false
id("org.jetbrains.kotlin.plugin.serialization") version "2.4.10" apply false
// Applied conditionally in app/build.gradle.kts — only when
// app/google-services.json exists. See the comment there.
id("com.google.gms.google-services") version "4.5.0" apply false
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
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-9.2.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
13 changes: 5 additions & 8 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 12 additions & 24 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading