Skip to content
Merged
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
6 changes: 3 additions & 3 deletions admob/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ dependencies {
implementation("androidx.appcompat:appcompat:1.8.0")
implementation("com.google.android.material:material:1.14.0")
implementation("androidx.browser:browser:1.5.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.10.0")
implementation("androidx.navigation:navigation-ui-ktx:2.10.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.10.1")
implementation("androidx.navigation:navigation-ui-ktx:2.10.1")

implementation("com.google.android.gms:play-services-ads:25.4.0")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// For an optimal experience using AdMob, add the Firebase SDK
// for Google Analytics. This is recommended, but not required.
Expand Down
2 changes: 1 addition & 1 deletion analytics/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.11.0")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Firebase Analytics
implementation("com.google.firebase:firebase-analytics")
Expand Down
2 changes: 1 addition & 1 deletion appdistribution/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies {
implementation("androidx.constraintlayout:constraintlayout:2.2.2")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// ADD the SDK to the "prerelease" variant only (example)
implementation("com.google.firebase:firebase-appdistribution:16.0.0-beta20")
Expand Down
6 changes: 3 additions & 3 deletions auth/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ dependencies {
implementation("androidx.constraintlayout:constraintlayout:2.2.2")
implementation("androidx.vectordrawable:vectordrawable-animated:1.2.0")
implementation("com.google.android.material:material:1.14.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.10.0")
implementation("androidx.navigation:navigation-ui-ktx:2.10.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.10.1")
implementation("androidx.navigation:navigation-ui-ktx:2.10.1")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Firebase Authentication
implementation("com.google.firebase:firebase-auth")
Expand Down
2 changes: 1 addition & 1 deletion config/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies {
implementation("com.google.android.material:material:1.14.0")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Firebase Remote Config
implementation("com.google.firebase:firebase-config")
Expand Down
2 changes: 1 addition & 1 deletion crash/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {
implementation("androidx.activity:activity-ktx:1.13.0")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Firebase Crashlytics
implementation("com.google.firebase:firebase-crashlytics")
Expand Down
6 changes: 3 additions & 3 deletions database/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ dependencies {
implementation("androidx.appcompat:appcompat:1.8.0")
implementation("androidx.recyclerview:recyclerview:1.4.0")
implementation("com.google.android.material:material:1.14.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.10.0")
implementation("androidx.navigation:navigation-ui-ktx:2.10.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.10.1")
implementation("androidx.navigation:navigation-ui-ktx:2.10.1")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Firebase Realtime Database
implementation("com.google.firebase:firebase-database")
Expand Down
6 changes: 3 additions & 3 deletions firestore/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
implementation(project(":internal:chooserx"))

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Firestore
implementation("com.google.firebase:firebase-firestore")
Expand All @@ -75,8 +75,8 @@ dependencies {
implementation("com.google.android.material:material:1.14.0")
implementation("androidx.media:media:1.8.0")
implementation("androidx.recyclerview:recyclerview:1.4.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.10.0")
implementation("androidx.navigation:navigation-ui-ktx:2.10.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.10.1")
implementation("androidx.navigation:navigation-ui-ktx:2.10.1")

// Android architecture components
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.11.0")
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 @@ -48,7 +48,7 @@ dependencies {
implementation("com.google.android.material:material:1.14.0")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Cloud Functions for Firebase
implementation("com.google.firebase:firebase-functions")
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ activityCompose = "1.13.0"
agp = "9.4.0"
camerax = "1.6.2"
coil3Compose = "3.6.2"
composeBom = "2026.08.00"
composeNavigation = "2.10.0"
composeBom = "2026.09.00"
composeNavigation = "2.10.1"
coreKtx = "1.19.0"
espressoCore = "3.7.0"
firebaseBom = "34.18.0"
firebaseBom = "34.19.0"
googleServices = "4.5.0"
firebaseCrashlytics = "3.0.8"
firebasePerf = "2.0.2"
Expand Down
2 changes: 1 addition & 1 deletion inappmessaging/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies {
implementation("androidx.constraintlayout:constraintlayout:2.2.2")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// FIAM
implementation("com.google.firebase:firebase-inappmessaging-display")
Expand Down
2 changes: 1 addition & 1 deletion messaging/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies {
implementation("com.google.android.material:material:1.14.0")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Firebase Cloud Messaging
implementation("com.google.firebase:firebase-messaging")
Expand Down
2 changes: 1 addition & 1 deletion perf/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {
implementation(project(":internal:chooserx"))

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Firebase Performance Monitoring
implementation("com.google.firebase:firebase-perf")
Expand Down
2 changes: 1 addition & 1 deletion storage/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {
implementation(project(":internal:chooserx"))

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.18.0"))
implementation(platform("com.google.firebase:firebase-bom:34.19.0"))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since firebase-bom is already defined in the Version Catalog (gradle/libs.versions.toml), we should reference it via libs.firebase.bom instead of hardcoding the version here. This centralizes dependency management and simplifies future updates.

    implementation(platform(libs.firebase.bom))


// Cloud Storage for Firebase
implementation("com.google.firebase:firebase-storage")
Expand Down
Loading