react-native-firebase
react-native-firebase copied to clipboard
🔥 A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.
A pretty simple one, I have a call to use the **setUserProperties** method, but I don't see the user property show and update on Debug View, only on Android. But...
## Issue 👋 In our project we are using RNFB v5 and we are migrating to v6 however when we receive push notification on IOS we would expect that onMessage...
## Issue When using a storage emulator in development, apps would include the following code: ```js import storage from '@react-native-firebase/storage'; if(__DEV__) { storage().useEmulator('localhost', 9032); } ``` However, when reloading the...
I have this code: ``` await messaging().requestPermission(); // IMPORTANT! await messaging().registerDeviceForRemoteMessages(); let token = await messaging().getToken(); ``` If I run this I get an error logged: Usage of "messaging().registerDeviceForRemoteMessages()" is...
I'm trying to use bundles following the documentation: ``` const response = await fetch('https://api.example.com/bundles/latest-stories'); const bundle = await response.text(); await firestore().loadBundle(bundle); ``` loadBundle raise the error `[firestore/unknown] Unknown error or...
## Issue `await dynamicLinks().getInitialLink()` works in debug mode, but doesn't work in release mode on iOS, on certain iPhones. Please not that the app does not crash, but rather `null`...
Following are the dependencies used in my project: "@react-native-firebase/app": "14.5.0", "@react-native-firebase/messaging": "14.5.0", "react": "17.0.2", "react-native": "0.67.2", I've used the following code as mentioned in documentation in index.js messaging().setBackgroundMessageHandler(async remoteMessage =>...
## Issue When calling `auth().signInWithPhoneNumber()` twice with the same phone number, it hangs and causes an infinite loading state on Android. If `forceResend` is set to true, a result is...
## Issue Many parts of the library rely on `firebase.json` for loading boot-time configs, e.g. https://rnfirebase.io/in-app-messaging/usage#disable-collection-of-data, https://rnfirebase.io/perf/usage#disable-auto-initialization etc. AFAICT the doc always says that the file should be placed directly...
**What I'm doing:** Installed and test dynamic links with firebase. In my app, I need t handle FB SDK App events and other custom urls. My `AppDelegate.m openUrl` method look...