flutterfire
flutterfire copied to clipboard
🔥 A collection of Firebase plugins for Flutter apps.
## Bug report **Describe the bug** On iOS, registering a top-level function with `FirebaseMessaging.onBackgroundMessage` does not guarantee that it will get invoked when a data-only push (without a notification payload)...
## Bug report **Describe the bug** On Android 13(platform version 33), getNotificationSettings returns `AuthorizationStatus.denied` in following two situation. 1. After the user explicitly taps `Never ask again` on asking permission....
## Bug report If i change the base href from `` in web/index.html to `` I get an error when running `FirebaseMessaging.instance.getToken();` Therefore I cant have push notifications for regular...
## Bug report **Describe the bug** I use phone authorization of firebase in my application When user clicks at 'Login' button I switch form to the 'Loading state' (which displays...
## Bug report App Check Returns Same Token Value of "eyJlcnJvciI6IlVOS05PV05fRVJST1IifQ==" in getToken Function. ### Steps to reproduce 1. Even using flutter app check example code make getToken() function return...
## Bug report Starting from version `3.0.0` the `firebase_dynamic_links` plugin started to handle dynamic links as deep-links by default on iOS, I tried on version `2.0.11` and it works normally...
I have a problem with my transaction timeouts. The timeout always takes around 9 seconds independent of how I set the timeout parameter. ``` final db = FirebaseFirestore.instance; final docref...
## Bug report **Describe the bug** We use dynamic links for email link sign in (and other cases as well), but in some Android devices the loading that shows before...
``` Future onSelectBackgroundNotification() async { RemoteMessage? message = await FirebaseMessaging.instance.getInitialMessage(); if (message?.notification != null) { _handleMessage(message!.data); message = null; log('background Message has been opened'); } FirebaseMessaging.onMessageOpenedApp.listen((RemoteMessage message) { RemoteNotification? notification...
## Bug report **Describe the bug** I have a github action I have used to deploy my Flutter web app for years that is now throwing an error. This happened...