Skip to content

Commit ceced94

Browse files
committed
chore: add firebase BoM version
1 parent 93dd749 commit ceced94

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
- We fixed a build failure where `com.google.firebase:firebase-analytics` could not be resolved when Push Notifications or Crashlytics were enabled by properly including the Firebase BoM logic.
10+
911
## [14.1.18] - 2026-06-10
1012

1113
- We removed the fallback scijava Maven repositories.

android/app/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ apply plugin: 'org.jetbrains.kotlin.plugin.compose'
5555
* Set this to true to Run Proguard on Release builds to minify the Java bytecode.
5656
*/
5757
def enableProguardInReleaseBuilds = false
58+
def firebaseBomVersion = rootProject.ext['react-native']['versions']['firebase']['bom']
5859

5960
android {
6061
ndkVersion rootProject.ndkVersion
@@ -110,6 +111,7 @@ android {
110111

111112
dependencies {
112113
implementation "com.facebook.react:react-android"
114+
implementation platform("com.google.firebase:firebase-bom:${firebaseBomVersion}")
113115

114116
implementation "androidx.core:core-ktx:1.3.2"
115117
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"

0 commit comments

Comments
 (0)