flutterfire
flutterfire copied to clipboard
🔥 A collection of Firebase plugins for Flutter apps.
## Description This PR adds the play integrity check to the already present SafetyNet app check when activating firebase app_check. Previously, only the SafetyNetAppCheck was being initialized. This PR was...
We were troubleshooting a crash with transaction handling and stumbled upon this line (although might be unrelated). https://github.com/firebase/flutterfire/blob/49921a4362c5965d2efeed17eb73775302007ea8/packages/cloud_firestore/cloud_firestore/ios/Classes/FLTFirebaseFirestorePlugin.m#L348 See inserted `//` comments for details: ``` FIRTransaction *transaction = self->_transactions[transactionId]; NSError...
## Bug report **Describe the bug** A crash happens when there is no internet connection and building a new short dynamic link on iOS. This doesn't crash on Android but...
``` /Users/yosbelgonzalez/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-3.4.4/ios/Classes/FLTTransactionStreamHandler.m:138:40: Use of undeclared identifier 'FIRTransactionOptions' /Users/yosbelgonzalez/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-3.4.5/ios/Classes/FLTTransactionStreamHandler.m:138:26: Use of undeclared identifier 'options' /Users/yosbelgonzalez/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-3.4.5/ios/Classes/FLTTransactionStreamHandler.m:139:3: Use of undeclared identifier 'options'; did you mean 'optind'? ----------------------------------------------------------------------------- FIRTransactionOptions *options = [[FIRTransactionOptions alloc] init];...
## Description Once this has been approved, I'll look to update the android documentation [here](https://github.com/firebase/flutterfire/pull/9445). ## Related Issues closes https://github.com/firebase/flutterfire/issues/6551 ## Checklist Before you create this PR confirm that it...
## Bug report **Describe the bug** ``` Query query = org .collection("myCol") .doc("docId") .collection('subCol') .where("readTimes", arrayContains: timestamp); ``` "timestamp" after arrayContains is from doc fetched by other query, and then...
This is reported previously. Please refer to https://github.com/firebase/flutterfire/issues/8898 What works: - run `flutterfire configure` and create the option file. - load it through ``` await Firebase.initializeApp( options: DefaultFirebaseOptions.currentPlatform, ) .....
## Bug report I am having trouble with my uploads hanging in a "running" state: ``` await Firestorage.FirebaseStorage.instance.ref(audioTarget).putFile(audioFile); ``` I trigger the upload this way, and the upload hangs (application...
https://github.com/firebase/flutterfire/issues/3124 https://github.com/firebase/flutterfire/issues/4846 https://github.com/firebase/flutterfire/issues/4129
The FCM fields used for localizing (I18N) the notification title and body are not working. For example: ``` { "android" : { "priority" : "normal", "notification" : { "title_loc_key": "notify_title",...