Skip to content

Commit

Permalink
fix(firestore, android): temporarily use newer-than-bom firestore
Browse files Browse the repository at this point in the history
Fixes #6158 until we can use a newer firebase-android-sdk
See firebase/firebase-android-sdk#3557
  • Loading branch information
mikehardy committed May 10, 2022
1 parent 45b352e commit 4e9ff20
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/firestore/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ repositories {
dependencies {
api appProject
implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
implementation "com.google.firebase:firebase-firestore"
// TODO - remove this once we have access to a BOM > 29.2.0
// See https://github.com/invertase/react-native-firebase/issues/6158
// See https://github.com/firebase/firebase-android-sdk/issues/3557
implementation "com.google.firebase:firebase-firestore:24.1.1"
}

ReactNative.shared.applyPackageVersion()
Expand Down

1 comment on commit 4e9ff20

@vercel
Copy link

@vercel vercel bot commented on 4e9ff20 May 10, 2022

Choose a reason for hiding this comment

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

Please sign in to comment.