react-native-firestack
react-native-firestack copied to clipboard
A firestack v3 react-native implementation
As this seems to be a recurring issue, I would like to trigger a discussion about how this problem can best be mitigated for the future. There are already several...
``` constructor() { console.log('UserStore', firebase.cloudMessaging) firebase.cloudMessaging.getToken().then((token) => { console.log('device token', token) this.deviceToken = token }) } ``` the log returns an object: ``` CloudMessaging {firestack: Firestack, eventHandlers: Object, options: Object,...
After debugging my app for a while, I tracked down this warning: `"Possible Unhandled Promise Rejection (id: x):" (x increments) ` to this line: `firestack.database.ref('events').orderByChild('ministryID').equalTo(i.toString()).on('value', this.handleEventUpdate.bind(this));` The code functions ok,...
Do you mean into our project or into the emulator?
storage handling delete files ?? const FirebaseStack = new Firestack(); const del = FirebaseStack.storage.ref(`/users/${uid}/${imageName}`); del.delete();
In _FirestackPackage.java_ file, it is commented the line to add de _FirestackCloudMessaging_ module. Why?
I have seen some issues, questions around push notifications, I was wondering if it is available and part of this library yet, or should I just use the react-native-fcm for...
[Cloud messaging](https://firebase.google.com/docs/cloud-messaging/) Add cloud messaging.
#_Can someone tell me what this means?_ _I get it when I run-ios_ > Native module cannot be null. **js file:** ``` import React, { Component } from 'react'; import...