I'm implementing react-native-firebase 5.2.0 with react-native 0.57.0.
I've made all the configuration asked in the documentation, but, when I'm going to perform a query with firebase firestore, the app crashes!
While debugging I can see that the query is indeed executed successfully, but not whithout closing the app.
These is the code I'm executing:
componentDidMount() {
firebase.firestore().collection('users').get().then((snap) => {
console.log(snap);
});}
Just to be clear, no error is trow while executing, just the app close.
That happens only when I use some method with firestore, like .get(), .add(), .update(), etc...
Anyone can help me with that?