All Questions
430 questions
0
votes
0
answers
30
views
Firebase function with poor connection (INTERNAL error)
Lots of users in my Android app are complaining about their actions not taking effect, and to my surprise Firebase functions fails when testing with a emulator using EDGE as Network Speed/Latency.
...
4
votes
0
answers
34
views
Why are fetch and firebase function calls not executed in Expo BackgroundFetch?
My JS fetch requests and also firebase function calls are stuck when i try to run it in expo background fetch.
Axios requests are successful in the background. I can see it's response.
But fetch and ...
0
votes
0
answers
52
views
Flutter: how to configure Firebase AppCheck for development environment
I am trying to implement firebase functions into my Flutter app and I have issues with AppCheck.
Without appcheck, when trying to invoke a callable cloud function from Flutter, it fails, saying that ...
1
vote
1
answer
40
views
Firebase Functions NOT_FOUND for europe regions
I have tried to create an function in europe-central2 region.
Unfortunately, I got this error if the function is not in the default region when calling from the Kotlin sdk:
return Firebase.functions....
0
votes
0
answers
33
views
How do I pass parameters to a callable firebase cloud function in Java android
When I call the firebase function inside my java code it sends { '0': '' } as the parameters instead of the actual data. I've tries changing it so it only sends a single token instead of several, but ...
0
votes
2
answers
52
views
why is on_call firebase function returning INTERNAL exception
firebase local emulation side:
initialize_app()
@https_fn.on_call( cors=options.CorsOptions(
cors_origins="*",
cors_methods=["get", "post", "options&...
0
votes
1
answer
37
views
How can i update my status field in firestore after several time
I am creating an app to book parking in different locations in that when Admin accepts a user parking request I have set that particular Location's slot status as true. But I want to reset that Status ...
1
vote
0
answers
114
views
Custom event "firebase.extensions.storage-resize-images.v1.complete" not working in Firebase Emulator
This is an android app that sends image files to Firebase Storage. Once in Firebase Storage the images are copied to another bucket where the resize images extension is enabled and converts the copied ...
0
votes
0
answers
91
views
Which technology stacks to use to develop app for Android or iOS
I am about to begin to build an app and I have choosen to develop the app in Flutter, and connected it to Firebase. However this is where I struggle to understand what Firebase does. My intial thought ...
0
votes
0
answers
46
views
How to reduce Firebase reads in a flutter app
I am trying to develop a ride-sharing application using Firebase and Flutter. I am having issues with how to reduce the amount of reads on Firebase. I have a number of questions and would appreciate ...
0
votes
1
answer
336
views
Why is my call to a Firebase Cloud Function returning an invalid parm error?
Getting this error:
Unhandled Exception: 'package:cloud_functions/src/https_callable.dart': Failed assertion: line 34 pos 12: '_debugIsValidParameterType(parameters)': is not true.
I originally ...
0
votes
0
answers
114
views
Choosing between PubSub and CloudRun to send images to Google Functions
I am trying to familiarize myself with GCP. I build a simple Android app that can upload photos to Firebase storage.
Now I want to do some processing on the cloud on the images I have on Firebase.
I ...
0
votes
1
answer
428
views
Android: How to get device id from a Google Analytics even in firebase - functions
I am trying to get firebase device id in firebase functions (Node JS)
This is the document that I have referenced.
https://firebase.google.com/docs/reference/functions/firebase-functions.analytics....
2
votes
2
answers
218
views
Running cloud function locally from emulator
I am sucessfully running local cloud function from postman with this url:
http://127.0.0.1:5001/spotnik-7de37/us-central1/getUsers
But on my app using:
val functions = Firebase.functions
functions....
0
votes
0
answers
56
views
Android Firebase database reference get detaild from where path is variable
In firebase functions we can
exports.vendor_Application = functions.database.ref(`vendor/back_office/application/{vendorUID}/`)
.onWrite(async (change, context) => {
.....
});
We can get get ...