react-native-firestack
react-native-firestack copied to clipboard
A firestack v3 react-native implementation
It's listed in the README as being available, however I noticed in Firestack.m that the entire code block for remote config is commented out. What was the reason for removing...
Hi, there is already a method for signing in to firebase: firebase.auth.signInWithProvider(social, token, '') in firestack library. but That's not all I need, how can i link anonymous account to...
Installing using `react-native link` as instructed in the README causes an error when trying to build the app in XCode. `React/RCTBundleURLProvider.h file not found` It seems like linking caused some...
A couple mistakes in the docs that I tracked down in terms of keys and values for credentials. I have facebook auth working in my app now as a result...
``` if(this.ref) { console.log("ref exists") this.ref.off('value', () => { console.log("off success") this.props.dispatch(logout()) }) .catch((error)=>{ console.log(error) }) } ``` Output: ref exists
Hello, I got this error when starting the app on iOS, once I click on dismiss the app it works normally but I do not get the token for push...
Someone comment cloud message for Android ... https://github.com/fullstackreact/react-native-firestack/blob/master/android/src/main/java/io/fullstack/firestack/FirestackPackage.java#L33
This bug happens because firebase tries to login 3 times if the user is offline. Because of this the callback will be called several times (2 times more than it...
The module crashes when the user is offline with the following stack trace: Fatal Exception: java.lang.RuntimeException: Illegal callback invocation from native module. This callback type only permits a single invocation...