144,009
questions
0
votes
1
answer
14
views
Problems deploying Firebase Functions from Google Cloud Build
The instructions to deploy 'hosting' seemed to be super simple, just:
args: ['deploy', '--project=project-id', '--only=hosting']
Now, I wanted to deploy hosting and functions, so I stripped the '--...
0
votes
1
answer
17
views
Firestore iOS: caching offline writes only
My database holds a large number of objects, so for performance reasons I've needed to disable persistent caching:
let settings = FirestoreSettings()
settings.cacheSettings = MemoryCacheSettings()
...
0
votes
0
answers
27
views
We were unable to review the app because it crashed on launch
our app gets rejected as it crashes on launch. According to the logs, it happens because the app attempts to access private-sensitive data. We don't collect any of personal data, so it is probably ...
2
votes
0
answers
27
views
Can't get native (C++) symbols to show up in crash reports, but in the past they did
I have an Android/Java app with a native library. At some point the native crash reports started looking like this. Before it did work fine:
I don't know when exactly it broke, I'm upgrading Gradle ...
0
votes
1
answer
17
views
Not able to write a specific package name for android app in flutter
I'm trying to build a app named chatapp and while creating it package name should be mentioned. I tried to write the package name as com.example.chatapp but it only wrote com only three letters can be ...
2
votes
0
answers
18
views
React+Firebase: Registration failed - push service error
I'm trying to implement push notifications to my react web app. The permission is granted, but token isn't being generated. I'm using public VAPID key. I'm using brave browser and my app is running in ...
1
vote
0
answers
17
views
Firebase Phone Authentication Error: FirebaseError: Firebase: Error (auth/internal-error)
I'm trying to implement Firebase phone authentication in my chrome web extension.
Everything works fine on the web, but when implementing it in a web extension, I am encountering the following error:
...
1
vote
1
answer
19
views
How can i prevent from Login component render when Firebase Authentication hasn't yet determined
The login component flashes even if the user is authenticated. I believe it is due to the initial state of the user$ observable from Firebase Auth.
When my application first loads, Firebase ...
0
votes
1
answer
27
views
Displaying the user's data on the Flutter app from Firebase Authentication [duplicate]
I am building a simple chat application where in on the click of a button, I want to be able to see a list of all the authenticated users from my Firebase auth, how can I do the same?
I found ...
0
votes
0
answers
14
views
Double Execution of Firebase Function in Emulator Environment
I've noticed that when running in the Firebase emulator environment, modifying the function and making a single GET request for the first time causes the function to execute twice:
@https_fn....
0
votes
1
answer
48
views
Firestore saves data locally on device but does not push to Firebase Console
I'm working on a Flutter app where I want to save entries into Firebase Firestore under a user-specific subcollection. The data seems to be added successfully to the device, but it never appears in ...
1
vote
0
answers
27
views
Are there networking charges for traffic between "Firebase Realtime Database" and "Cloud Run Services" in the same region?
According to the Firebase pricing page, the Realtime Database has a free cost until 10GB of data transferred. After I've joined the "Blaze plan", I could see at https://console.firebase....
-1
votes
0
answers
34
views
MP4 format for Firebase Storage [closed]
I have noticed that some of my mp4 files in storage cannot be read, not matters how they are uploaded (from a script or manually).
I noticed that all the videos that causes trouble come from somewhere ...
0
votes
0
answers
21
views
The email is not being extracted from the googleIdToken
We obtain a Google ID token from Android using the code below:
BeginSignInRequest.Builder()
.setGoogleIdTokenRequestOptions(
BeginSignInRequest.GoogleIdTokenRequestOptions.builder()
...
0
votes
0
answers
14
views
core.mjs:7400 ERROR FirebaseError: Invalid document reference. Document references must have an even number of segments, but Usuario has 1
I am trying to make sure that when I switch to dark mode it is saved in the user with which I logged in and when I log in again with that user it puts me in dark mode again, but I get this error and ...