Skip to content
Open
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
2 changes: 1 addition & 1 deletion functions/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ dependencies {
implementation("com.google.firebase:firebase-functions:21.0.0")

// For streaming callable Cloud Functions
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.10.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.11.0")
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Updating kotlinx-coroutines-reactive to 1.11.0 in isolation can lead to binary incompatibility and runtime crashes. All kotlinx-coroutines modules (such as core, android, and reactive) must be kept on the same version to ensure stability. Since this is an Android project, kotlinx-coroutines-android is likely present as a transitive dependency (e.g., via Lifecycle KTX). It is highly recommended to use the kotlinx-coroutines-bom to ensure version consistency across all coroutines modules.

    implementation(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.11.0"))
    implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive")

}
Loading