Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("com.android.library") version "8.8.0" apply false
id("org.jetbrains.kotlin.android") version "2.1.10" apply false
id("com.google.gms.google-services") version "4.4.2" apply false
id("com.google.firebase.crashlytics") version "3.0.2" apply false

Choose a reason for hiding this comment

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

Choose a reason for hiding this comment

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

  • [ ]

id("com.google.firebase.crashlytics") version "3.0.3" apply false
id("com.google.firebase.firebase-perf") version "1.4.2" apply false
id("androidx.navigation.safeargs") version "2.8.6" apply false
id("com.github.ben-manes.versions") version "0.52.0" apply true
Expand Down
2 changes: 1 addition & 1 deletion crashlytics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("com.android.library") version "8.8.0" apply false
id("org.jetbrains.kotlin.android") version "2.1.10" apply false
id("com.google.gms.google-services") version "4.4.2" apply false
id("com.google.firebase.crashlytics") version "3.0.2" apply false
id("com.google.firebase.crashlytics") version "3.0.3" apply false
}

allprojects {
Expand Down
2 changes: 1 addition & 1 deletion functions/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
implementation("androidx.appcompat:appcompat:1.7.0")

// Import the BoM for the Firebase platform
implementation(platform("com.google.firebase:firebase-bom:33.5.1"))
implementation(platform("com.google.firebase:firebase-bom:33.9.0"))
Copy link
Member

Choose a reason for hiding this comment

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

I'm not sure why the build keeps failing in GH Actions. Locally I'm able to build the functions module with no issues using the firebase-bom:33.9.0 dependency.

Suggested change
implementation(platform("com.google.firebase:firebase-bom:33.9.0"))
implementation(platform("com.google.firebase:firebase-bom:33.5.1"))


// Add the dependency for the Cloud Functions library
// When using the BoM, you don't specify versions in Firebase library dependencies
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lifecycleRuntimeKtx = "2.8.7"
activityCompose = "1.10.0"
composeBom = "2025.01.01"
reactiveStreams = "1.0.4"
vertexAI = "16.0.2"
vertexAI = "16.1.0"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
Expand Down
Loading