Questions tagged [firebase]
Firebase is a serverless platform for unified development of applications for mobile devices and for the web.
105,403
questions
0
votes
0answers
10 views
How to change the state of a like button using the like_button package in flutter?
I used the like_button package ( https://pub.dev/packages/like_button ) and I want it to interact with Firestore in such a way that when I click the button, the value is incremented and when I re-...
0
votes
0answers
7 views
how to add different flavours of same application(want to clone the application) with differnt google-services.json file in android project?
I want to clone my android app and launch it with a different name and a fresh new database in a different region, I don't want to write the code all over again or make a duplicate copy of the project....
0
votes
0answers
7 views
Android studio how to open up an app (a specific activity even if the application is at sleep (not in the recents))
I was making a video call application on android studio I see that when I call the other user when the application is ON then it will work
but if the user kills the application from the recent menu ...
0
votes
0answers
7 views
When I try to get the user data with Go and firebase adminSDK, I can only get the memory address
I'm currently using the Firebase adminSDK to get the user data from the firebase authentication.
The following code seems it can access firebase, but the data to be retrieved is a memory address.
I ...
0
votes
0answers
6 views
How do you return user data from a firebase cloud function? [duplicate]
I want to return all registered users from the firebase backend and display them on the front end? I'm thinking my backend function should be something like this:
exports.getAllRegisteredUsers = ...
0
votes
1answer
14 views
Turn off Realtime Changes on Firebase (Android)
Im currently developing a chatting app, using firebase, and firebase realtime database as my Database.
I have a users list, and it updates every time a data in list changes. Which i think very bad, ...
0
votes
0answers
7 views
Does gsutil cp command affect my bandwidth limit quota?
I am looking for a way to get a backup of my firebase storage bucket and found out about gsutil but I want to know that does is count the number of bytes transfer to my local matching in my bandwidth ...
0
votes
0answers
7 views
Firebase Remote Config REST caching
With each response, Firebase Remote Config REST API provides "ETag" value.
I would expect that sending this ETag value in "If-None-Match" would deliver back 304 Not Modified ...
0
votes
0answers
7 views
Flutter Firebase Phone auth reCaptcha duplicate my login page after verification on iOS
I have a login page with juste one field for phone number and im using Firebase Phone Auth.
Everything is okay except when google reCaptcha appeared in the web browser (not google chrome and not ...
0
votes
0answers
18 views
I want to upload and display the profileimage of the user , but I am not able to display it ,here is my code
Here is my ImageUpload component:
Can anyone please tell me what is the error in this code and what is the solution?
I am using firestore to store the data
function UserProfile({user,username}) {
...
0
votes
1answer
13 views
Failed to resolve: com.google.firebase:firebase-core-ktx:
Image link containing screenshot of the error
I am using Kotlin for my android app. I am unable to finish my Gradle Build due to this error :
Failed to resolve: com.google.firebase:firebase-core-ktx:
...
0
votes
0answers
15 views
How to be able to receive background notifications with FCM on iOS (android already works)
In my Flutter app the admin users can send notifications to the others users through FCM. In android already works but in iOS the notification arrives only with the app opened. I already tried many ...
0
votes
0answers
7 views
How to retrieve pushed data from Firebase realtime database [javascript]?
I am developing a web app to display the list of epoch timestamps listed every time a particular device is turned on. I need to retrieve the data from /f120/devices/dv1/ all the epoch timestamps under ...
0
votes
1answer
18 views
Make List<String> from value in query snapshot Flutter
I'm new to flutter and I want to make two different Lists using only one function. I want one list to contain all the data (routes) but I want the second to contain only one value from the snapshot (...
1
vote
1answer
26 views
firestore set operator do not add any document
I have created a promise chain to store user to firestore and authentication in an order. First time, i used add operator but i decided that i should store user according to their uid for that reason ...