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
1 answer

Error while migrating from react-native-fcm to react-native-firebase

I am migrating my react native app that used react-native-fcm and react-native-firebase-analytics that are now deprecated to use react-native-firebase. The build runs fine, however when the app start, it stays on the splash screen for almost a…
user8169074
0
votes
1 answer

Difference between a download URL and an image Url

I am storing users profile images in firebase. Firebase gives me back urls like this one…
Robert Lemiesz
  • 1,026
  • 2
  • 17
  • 29
0
votes
1 answer

React native - iOs - Push Notification doesn't work on iOs <= 10.3.3 and below

I'm integrating react native app and firebase to push notification. I'm using react-native-firebase at https://rnfirebase.io/ It's working fine on iOs 11 but It doesn't work on iOs 10 when app is closed/killed (only work once app is…
Shine
  • 297
  • 3
  • 8
0
votes
3 answers

react-native-firebase dependency issue in android setup

I am getting the following error after installing and configuring the react-native-firebase library. PS. App path is dummy Task :app:compileDebugJavaWithJavac root\android\MainApplication.java:14: error: package io.invertase.firebase does not…
Sankalp
  • 76
  • 1
  • 8
0
votes
1 answer

React Native Firebase not Off-line

So guys I have my app working 100% with Firebase and react-native but the problem is if I try to disconnect the internet the app don't get cached information. On official Firebase says that firebase works with local storage cache and provides…
0
votes
0 answers

Executing actions while app is in killed / inactive state

Is there any way to execute an action while app is in inactive or killed state? I found this usecase while handling remote notifications when app is in inactive/ killed state.I want to execute a react-native-shortcut-badger function to set a badge…
Manzoor Samad
  • 889
  • 1
  • 9
  • 16
0
votes
1 answer

Firestore - iOS react native app works in offline mode

The app I built performs some of the Firestore queries and updates in offline mode, even though connectivity is available. I've run firebase.firestore().settings({persistence: false}) When resetting the simulator to factory settings, on the first…
Ohad
  • 1,719
  • 1
  • 16
  • 20
0
votes
1 answer

How do I debug a Thread 1: signabrt, debug console doesn't show any logs

My ios project builds and installs on the device but has a runtime crash after launcher screen finishes. I'm looking in the debugger console but I don't see any logs to help me diagnose what is going on. My project was working correctly before I…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
0
votes
1 answer

Firebase Google login not staying persistence

I am developing an application, with an feature of Google Login through Firebase. I am trying to login via Google with the help of an library, known as react-native-google-signin. It is well known library in the field of ReactNative for Google…
0
votes
1 answer

Converting circular structure to JSON react-navigation with firebase

Hye guys.. im trying to use react-navigation and firebase in my project. Im using this awesome boilerplate :- https://github.com/jhen0409/react-native-boilerplate in my navigator.js import { StackNavigator } from 'react-navigation'; import…
Hazim Ali
  • 1,077
  • 4
  • 17
  • 28
0
votes
3 answers

why is redux-saga not throwing an exception in call

I have the following simple saga in my react-native app: import {call, put, take} from 'redux-saga/effects'; import firebase from 'react-native-firebase'; export function* signupWithEmailPassword(action: AuthAction) { const {email, password} =…
domi
  • 2,167
  • 1
  • 28
  • 45
0
votes
1 answer

Unable to receive "data" type message when the app is in the background in react-native-firebase

I was getting some issues with react-native-fcm and react-native-push-notification, so I decided to try react-native-firebase. I am able to receive the following payload sent by the server when the app is in foreground: { …
0
votes
1 answer

Build failed for task: apptransformClasseswithJarMergingForDebug

My build failed while importing RNFirebase library in the project snap source here This is my gradle dependencies { compile(project(':react-native-firebase')) { transitive = false } compile "com.facebook.react:react-native:+" compile…
power-cut
  • 1,310
  • 1
  • 14
  • 30
0
votes
1 answer

Blank verification page stil opening after Silent Notifications be configured

I've configured Xcode and Firebase Console with silent notifications. I'm receiving the push notifications and the response from the firebase after try to signing, but in middle of the process, firebase is opening a blank page to verify If I'm not a…
0
votes
2 answers

React Native/Firebase: Issue with FlatList Re-Rendering & Duplicate Keys

I am using React Native and Firebase Realtime Database. I am experiencing two problems with the FlatList component: I am getting a lot of "duplicate key" errors whenever the list re-renders. I am not sure why I am getting this problem because I am…