Skip to content

Commit 4e9ff20

Browse files
committed
fix(firestore, android): temporarily use newer-than-bom firestore
Fixes #6158 until we can use a newer firebase-android-sdk See firebase/firebase-android-sdk#3557
1 parent 45b352e commit 4e9ff20

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/firestore/android/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ repositories {
9090
dependencies {
9191
api appProject
9292
implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
93-
implementation "com.google.firebase:firebase-firestore"
93+
// TODO - remove this once we have access to a BOM > 29.2.0
94+
// See https://github.com/invertase/react-native-firebase/issues/6158
95+
// See https://github.com/firebase/firebase-android-sdk/issues/3557
96+
implementation "com.google.firebase:firebase-firestore:24.1.1"
9497
}
9598

9699
ReactNative.shared.applyPackageVersion()

0 commit comments

Comments
 (0)