Questions tagged [react-native-firebase]

This tag is for the react-native-firebase npm package.

This tag is for the react-native-firebase npm package. React Native Firebase allows the use of the full firebase suite of modules whilst working with react native, it works by providing a javascript bridge to the native android and iOS firebase SDK's.

When using this tag it would be helpful to specify the following:

1. Application Target Platform(s):

2. Operating System:

3. React Native version:

4. RNFirebase Version:

5. Firebase Module:

1347 questions
3
votes
1 answer

No visible @interface for 'FIRMessaging' declares the selector 'sendMessage:to:withMessageID:timeToLive:'

I am using React native firebase and have an issue while I am building my app like below (error message). No visible @interface for 'FIRMessaging' declares the selector 'sendMessage:to:withMessageID:timeToLive:' I read many blogs to solve it but…
3
votes
2 answers

In React-Native the Firebase-Crashlytics log is not showing on Firebase Crashlytics dashboard

I am using react-native-firebase in my app. I have used Crashlytics and tried to show the Crashlytics log in the firebase dashboard. so I have used crashlytics().log for logs. But the logs are not shown on the firebase dashboard. Code: import…
vjtechno
  • 452
  • 1
  • 6
  • 16
3
votes
3 answers

React Native : Error: [messaging/unknown] java.io.IOException: java.util.concurrent.ExecutionException: java.io.IOException: FIS_AUTH_ERROR

I am trying to implement the push notification in my app. I have used react-native-firebase/app and @react-native-firebase/messaging libraries for the push notification. i have follow the complete document and try to implement push notification. But…
3
votes
0 answers

How do we register a push notification listener for Azure Notification Hub using React Native?

I have created an instance in Azure Notification Hub and added a server key to the GCM option that I obtained from my Firebase Console. I have a Node.js backend that has REST API endpoints to register installations and send out push notifications to…
3
votes
1 answer

Data not getting stored in Firestore when the firestore package from rnfirebase

I used the @react-native-firebase/firestore package for my React native app. I have installed my firebase/app as well and followed all the installation steps in the firebase web page. But I am not able to store data into my firestore. Here's the…
3
votes
1 answer

React native Firebase

I have peculiar issue, I have found many solutions for this error but none of them work. [!] CocoaPods could not find compatible versions for pod "RNFBApp": In Podfile: RNFBApp (from `../node_modules/@react-native-firebase/app`) Specs satisfying…
sqwale
  • 554
  • 3
  • 24
3
votes
1 answer

How to disable recaptcha in react-native-firebase?

Recently I have updated @react-native-firebase/auth, and now there is Recaptcha verifier added to the updated version. But I dont want, even I didnt configure any Recaptcha but it is automatically opens while signing with phone number in…
3
votes
1 answer

Firebase REST API signInWithIdp and Apple SignIn Provider - MISSING_OR_INVALID_NONCE

I'm implementing Apple Sign In in a React Native App. The sample I'm using works well within the Mobile App: Apple Sign In - React Native Firebase Just in case the link above changes, here is the code: import auth from…
3
votes
0 answers

Alias an npm module to a different npm module

I am adding a web interface to my react-native mobile application by first converting it a mono-repo using yarn workspaces to create reusable packages for shared code. I use react-native-firebase in the mobile app to capture analytics and to store…
3
votes
0 answers

Firebase analytics custom event shows zero users even though event count is non-zero

I am logging some new custom events using Firebase Analytics in a React Native app. The events do show up in the Firebase events page after some delay, but the user count for these new events is "0", and I am trying to determine what the issue is.…
3
votes
0 answers

NSInternalInconsistencyException in folly::detail::function::FunctionTraits

Bugsnag full error: NSInternalInconsistencyException in folly::detail::function::FunctionTraits::uninitCall(folly::detail::function::Data&, folly::dynamic const&, folly::dynamic const&) …
Sonam Maniar
  • 312
  • 4
  • 8
3
votes
0 answers

react native inline vs end of file - export default - while using firebase

i am using firebase for my app's authentication. when i run my code, emulator runs it without a problem but when i change something in my code and check my emulator, depending on my code an error occurs. if i use: export default class App…
3
votes
2 answers

Crashlytics Crash not displayed on Firebase Console

I use react-native-firebase to implement crashlytics on my app. It worked normally when my app use 6.4.0 version. That version not fully migrated to Firebase Crashlytics. Then, I upgraded to 8.4.2 version that has breaking changes, migrating Fabric…
3
votes
6 answers

react-native-firebase_messaging has not defined a default in project.ext.'react-native'.versions.android.compileSdk

I'm using @react-native-firebase/messaging. when I tried to run the project in android it's return error :react-native-firebase_messaging has not defined a default in project.ext.'react-native'.versions.android.compileSdk in its build.gradle file.
3
votes
1 answer

FCM Token for firebase cloud messaging sometimes not registered

I have a React Native app with React Native Firebase, which I use for push notifications / cloud messaging. So generally everything is fine, but the iOS version has one issue. The problem is that the FCM Token I receive (const fcmToken = await…