react-native-firestack
react-native-firestack copied to clipboard
A firestack v3 react-native implementation
This happens for fresh project created with react-native 0.41.2 ``` yarn add react-native-firestack react-native link react-native-firestack ``` ``` Preparing to link react-native-firestack for iOS Checking CocoaPods... CocoaPods already installed rnpm-install...
I'm getting an argument mismatch on the `signInWithProvider` function, expected 4, received 2. I'm using the v3 branch. The Java code expects 4 arguments (3 + callback/promise). https://github.com/fullstackreact/react-native-firestack/blob/8db8b5040b90e990816ede8b749e24ca9a486a11/android/src/main/java/io/fullstack/firestack/auth/FirestackAuth.java#L161 But the...
Re-added RemoteConfig feature.
hey Ari. Does Firestack provide support for App Invites ?
@Salakar @auser I think we should consider creating a User class and switching the user management methods such as "updateEmail" and "updateProfile" over to match the firebase web api. Thoughts?
I'm using firestack to log analytics event with the code below: ``` this.firestack.analytics.logEventWithName('showDetail', { 'value': rowData.title, 'title': rowData.title }) .then(res => console.tron.display({name: 'Sent event named showDetail', value: res})) .catch(err =>...
Bugs like for example https://github.com/fullstackreact/react-native-firestack/issues/236 would be easier to find early on with unit tests. Currently, there is not a single test in v3. What do you think, should Mocha...
``` firestack.auth.createUserWithEmail('[email protected]', '123456') .then((user) => { console.log('user created', user) }) .catch((err) => { console.error('An error occurred', err); }) ``` The code above throws an error showed in image below. I...
`react-native link` wasn't working for me because of https://github.com/fullstackreact/react-native-firestack/issues/261, so I followed the manual installation documentation for android. I wasn't able to get `react-native run-android` to work, and so I...