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.
During using the analytics library, we got stuck on setting _user behavior data pipeline_ since several events were not triggering and user properties are not setting well. After some research(checking...
Apparently the workarounds may not be necessary any longer in current versions of the emulator. Needs testing Specific lines: https://github.com/invertase/react-native-firebase/blob/514e6bd51e7624a6403dda706f4e5b65cee63422/packages/database/e2e/helpers.js#L41
## Issue The remote config fetching works perfectly fine when using the default firebase app. When using a secondary firebase app, the fetching is not occurring. While logging, the app...
This was documented as added quite some time ago in iOS: - firebase-ios-sdk 4.7.0 in 2017 added it https://firebase.google.com/support/release-notes/ios#dynamic-links_36 But then I look in the iOS SDK reference and cannot...
## Issue Hi and thanks for the awesome libs! I updated recently, and encountered a bug on Android: when hot-reloading the codebase and using the Firestore emulator, I got an...
## Issue When we log an event with a param that has a numeric value it shows correctly in the Realtime view but when viewed on the event dashboard, it...
## Issue Application with email/password, and Facebook login. On Android, create email/password account, name it ABC. And link it with Facebook account. Success. Expected. On Android, create another email/password account,...
The codecov npmjs.com package is fully deprecated https://www.npmjs.com/package/codecov The codecov upload is failing in CI at this point, indicating it is not working anymore for some reason: https://github.com/invertase/react-native-firebase/runs/5666297808?check_suite_focus=true#step:22:45 It could...
I am using package "@react-native-firebase/messaging": "^14.7.0" for push notification service. I want to send notification to a topic from device so i added below code snippet ```javascript let remoteMessage =...
## Issue ```javascript const a = firebase.database().ref('/v2/projects'); const b = firebase.database().ref('v2/projects'); const c = firebase.database().ref().child('/v2/projects'); const d = firebase.database().ref().child('v2/projects'); console.log(a.path, b.path, c.path, d.path); // outputs v2/projects v2/projects /v2/projects /v2/projects (note...