Questions tagged [firebase]
Firebase is a serverless platform for unified development of applications for mobile devices and for the web.
126,226
questions
0
votes
1
answer
5
views
How to pre-load data to avoid multiple firebase reads in Angular
Problem: A specific component in my web app reads a large amount of data from Firebase Firestore every time a user navigates there. This causes hundreds of thousands of un-necessary reads to my ...
0
votes
0
answers
5
views
How can I store two digit month in Firebase using Java?
I've now tried a couple of different methods to get the format I want in my Firebase Database:
I use the java.util.Calendar import in Android Studio.
Method 1:
if (endMonth <= 9) {
...
0
votes
0
answers
6
views
Firebase - Should I create a new app or keep it as one large app?
What would you all say is the best time to split off into a new “app” under the same Firebase project. For example, if you have a student portal that accesses info from the database for students, but ...
0
votes
0
answers
9
views
Loop through a string arrayList while using a string on firebase
So I have a simple ecommerce app that has products(custom objects) on the cart and a proceed to checkout button. When the button is pressed I send an ArrayList with product ids with the intent so I ...
0
votes
0
answers
11
views
Firebase Auth - How to update user email and execute catch if email is already registered
I know in order to update a user's email the user must have been recently been logged in which I have taken care of with reauthenticateWithCredential(credential) Where I'm at now is trying to update ...
0
votes
0
answers
3
views
Uploading an mp3 to Firebase Storage with React Native Expo
I am attempting to upload an mp3 to firebase storage using expo and react native. So far I've got the file into firebase storage, but it's only 9bytes large, so I'm doing something wrong. I've ...
0
votes
0
answers
11
views
DatabaseReference for each listview item
so i am working on groupchats for my app, and im trying to display the last message sent.
i have got the listview through a fragment and thats why this custom view is made in a separate class. it ...
-2
votes
1
answer
29
views
something wrong with error function in react
There is something wrong with my error function when I look at my browser error and I don't why putting down a console.log with error would be a problem. I could use help figuring out this problem. It'...
0
votes
0
answers
6
views
How to deploy Nuxt SSR in Firebase with Cloud functions
I'm playing with Nuxt in mode SSR and Firebase + Cloud functions, after deploy, everything working fine, no errors in the console from nuxt project, no errors in the functions log, but I got a page ...
0
votes
0
answers
7
views
How to manage firebase users while creating a firebase user after logging into anotherfirebase user [duplicate]
I have a user registered on firebase with email as admin@abc.com. When I logs in using admin@abc.com, i have given this user the privilege to add new users. And when admin@abc.com adds any new user ...
-1
votes
0
answers
8
views
firebase java.lang.IllegalArgumentException: Modal model must have a title
I'm using Firebase In App Message in my application and trying to use custom display in the messages. When i try to use the markAsClicked callback, he asks for an Action as argument, but the getAction ...
0
votes
0
answers
13
views
Updating text moderation in real time
I am implementing a real time chat with text moderation. I'd like for moderators to be able to add words to the filter and have it be applied to the Google Cloud function instantly.
Two ideas I had:
...
0
votes
0
answers
6
views
Return Browser-Understandable Status Code with Callable Firebase Cloud Functions
I'm aware that a status code that is interpretable by the browser can be sent via Firebase Cloud Functions when using the onRequest method, however, I would like to return a status code using on ...
0
votes
0
answers
9
views
how to query users that are not followed by the use in firebase firestore? [duplicate]
how to query users that are not followed by the user in firestore?
firebase structure:
firestore (root)
----users (colloection)
----user (doc)
uid: "xyz"
----following (...
0
votes
1
answer
10
views
Is it OK to store objects and objects' ids in separate fields in Firestore [duplicate]
I have collection of chats and I want to search through this collection by chat's members. Collection looks like:
{
...
owner: 'user-123',
members: ['user-123', 'user-456'].
membersData: [{
id: '...