All Questions
Tagged with firebase-tools react-native
17 questions
2
votes
1
answer
52
views
How to use react-native-firebase auth emulation?
im using react-native-firebase v21.6.1 and im trying to start the auth service emulation. Ive gotten the firestore and functions emulation working.
firebase.json
"emulators": {
"...
1
vote
1
answer
40
views
firebase.auth().useEmulator() takes a non-empty string URL
THE PROBLEM
When I run the command:
npx expo run:android
or
npx expo start --reset-cache
My Android Cellphone is connected on my USB port.
I get this error: firebase.auth().useEmulator() takes a non-...
2
votes
0
answers
317
views
How can I properly connect my React Native application to a Firebase Emulator Suite?
I have been working on a react native application using a bare workflow. I have a Firebase project set up with Authentication and a Realtime Database which is already working with the app using live ...
1
vote
0
answers
206
views
ConnectFirestoreEmulator() throwing Connection WebChannel transport errored
I have a react native app, which i am developing using Expo. In my project, i run firebase firestore emulator and I want to connect my application to the emulator. I use the expo GO app on my phone ...
2
votes
1
answer
416
views
How can I use firebase without the emulator?
I am learning firebase and I checked this tutorial regards the authentication. (https://www.youtube.com/watch?v=rbuSx1yEgV8&t=502s). In this video, the emulator seems to be essential, however I ...
4
votes
0
answers
440
views
React Native Firebase problem with emulator on physical device
I am programming an app with React Native. To use Firebase in this app, I installed the React Native Firebase npm package. I have set up everything to make requests to Firebase functions and this ...
1
vote
1
answer
866
views
Firebase Functions v.9 - Internal Error after using connectFunctionsEmulator()
I'm trying to setup Emulator for my firebase functions but I receive this annoying internal error. Let's begin with code.
const requestApi = () => {
const functions = getFunctions(app);
...
3
votes
1
answer
543
views
Firebase Auth emulator does not work after updating version to 9.6.3
We have recently updated firebase to version 9.6.3 from 8.10.0 (also expo from sdk 41 to 44). After the update the app throws this error when using the auth emulator.
Uncaught FirebaseError: Firebase: ...
0
votes
1
answer
387
views
Access Firebase Realtime database/Firestore from Cloud Function via Firebase Emulator
I want to use a tool like postman or my react native app to call a Firebase Cloud function and get access to Authentication, Firestore, Storage or Realtime Database emulator from the cloud function. ...
1
vote
2
answers
1k
views
initialize firebase emulator storage
is there a way already how to use firebase storage emulator for local development?
I found out it should be possible these days using the firebase-tools I guess but I cant figure out how to include it ...
7
votes
4
answers
3k
views
Firebase Firestore Emulator UI is not showing any data, but data is being returned in app query
I am facing an odd issue with firebase's firestore emulator. When i start the emulator, and check the emulator's firestore UI, it shows that no data exists in the db yet.
Then, i try query the ...
3
votes
0
answers
123
views
react native firebase authentication emulator error message thrown : Error: A network error
I am attempting to use the recently released firebase emulator suite. specifically the authentication emulator.
I have the emulator installed and have created an test user in the auth emulator. as ...
2
votes
1
answer
3k
views
Correct way to connect and test firebase emulator with react native app
I am implementing a react native app with firebase as serverless backend. I am facing some errors when trying to connect my app to firebase emulator. I am using https://www.npmjs.com/package/firebase ...
2
votes
2
answers
1k
views
Expo does not work with firebase emulator
I'm trying to access the firestore emulator (hosted locally) through my Expo app on both physical and emulated devices, which both don't work. When I make a call to the emulated firestore database, ...
3
votes
1
answer
959
views
Connecting to cloud function running on emulator from android emulator in react native
I am building an application and using firebase for the backend. I used react-native-firebase to use firebase in my application. I have developed a login cloud function
exports.login = functions.https....