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
0
votes
0 answers

React-native-firebase not displaying on iOS

I am making an app that calls from a firebase Firestore and displays teams for certain players. For some reason when logging in on iOS simulators, it logs in fine but won't display and teams. It does however display teams when logged in on android.…
Liam Ramsbottom
  • 157
  • 3
  • 15
0
votes
0 answers

Unable to the navigate the another page after getting fire base details

My requirement is i need check valid user name and PASSWORD, if it is correct then get the details of particular user, once data is retrieved i need to navigate another page, Below is code, Please help how to call: validateFirebase = (email, pass)…
0
votes
4 answers

Unable to get push notification from fcm in react native

I am getting push notification from firebase but when I sent it using the "https://fcm.googleapis.com/fcm/send" on android in react native using react-native-firebase library, I do not get any notification on android. However I am able to display…
Arun kumar
  • 1,041
  • 5
  • 20
  • 39
0
votes
1 answer

Can we use react-native-firebase for android only and for IOS other api provided by react-native?

I have already implemented PushnotificationIos , an api provided by react-native working fine. Lately I have to implement pushnotification for android and I am trying to use react-native-firebase@4.x.x . I have platform specific handler but Works…
santosh
  • 140
  • 1
  • 13
0
votes
0 answers

React native firebase navigation unable to navigate second screen

When i click the login button first time i am getting value is "undefined", after second click it showing exact value what i am excepting. My requirement is i need check valid user name and PASSWORD, if it is correct then get the details of…
0
votes
0 answers

App crashes on startup, works fine in debug mode

I have added rnfirebase to my project recently for fcm, I have setup everything as per the documentation and I can even see notifications coming through to my app in emulator(debug mode). But app crashes only in release mode. Says 'Unfortunately app…
Kireeti K
  • 1,370
  • 1
  • 19
  • 32
0
votes
1 answer

Firebase integration with React-Native IOS app is failing

I am trying to integrate the Firebase service with React-Native framework. I am trying to follow this tutorial in Udemy: https://www.udemy.com/the-complete-react-native-and-redux-course/ Steps I followed: Downloaded firebase using npm command: npm…
0
votes
1 answer

Error type 3 Error: Activity class {com.myapp/com.myapp.MainActivity} does not exist

when i run react-native run-android i get this error, i was installing react-native firebase I did all configuration to get this to work and just at the end it seems to be a package name error. The thing is that I already checked the files : -…
0
votes
1 answer

React native app is multiple dex with over 65536 methods

I am programming react native app on android. When I run on android, it show error: multiple dex with over 65536 methods. Here is android/app/build.gradle: dependencies { compile project(':react-native-device-info') compile…
0
votes
2 answers

How do I solve this property declaration error that typescript keeps complaining to me?

I have a piece of code in my componentDidMount lifecycle function that does the following this.unsubscriber = auth().onAuthStateChanged((user: RNFirebase.User) => { this.setState({ user }); }); onAuthStateChanged returns an unsubscriber function…
Luis Averhoff
  • 887
  • 2
  • 11
  • 22
0
votes
1 answer

Firebase analytics with Google Tag Manager in react native iOS application

I'm using the React Native firebase library for firebase analytics. I wanted to use Google Tag Manager also in my project for iOS application. Is there a way to integrate it into my project while I'm using react-native-firebase? This link:…
0
votes
1 answer

Cancel upload process on react-native-firebase storage

Is there any way to cance uploading process in react native firebase? I'm using RNFirebase 5.0.0. In the documentation here https://github.com/invertase/react-native-firebase/blob/docs_old/docs/modules/storage.md says that uploadTask.cancel() is not…
Restu Utomo
  • 73
  • 1
  • 1
  • 7
0
votes
0 answers

BackGround Notification Data Fetch

So What i am essentially trying to do is Send a notification from firbase gcm and recieve it on the front end while the app is KILLED. Once the notification is received i want to fetch some data from the server and insert it into the local database.…
Amol Gupta
  • 2,054
  • 1
  • 14
  • 29
0
votes
1 answer

React-native-firebase Database - Retrieve datas from nested calls

I have a Firebase database as such (for instance): { 'itemCategories': [ _categoryKey1: { name: 'Category 1' }, _categoryKey2: { name: 'Category 2' }, _categoryKey3: { …
0
votes
0 answers

Acessing the dynamic link when the App is in the Background React Native FIrebase

getInitialLink() works when the app is closed and onLink works while the app is running but when the app is backgrounded clicking on the dynamic link is opening the app but when I execute the getInitialLink() once the app becomes active the link…
Anirudh Bandi
  • 1,171
  • 10
  • 20