143,210 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Best practices
0
votes
2
replies
57
views
Is using CryptoJS AES with a Firebase UID as the encryption key a secure approach?
import CryptoJS from 'crypto-js';
const GLOBAL_SALT = 'AarthSaathiEncryptSaltSecretKey';
/**
* Encrypts a field value client-side using a key derived from the user's UID.
* @param {string} value ...
- reputation score 1
Best practices
0
votes
3
replies
71
views
How to encrypt and decrypt specific fields in a React Context before storing them in Firestore?
// UserContext.jsx — global user profile state
// Handles missing Firebase gracefully (works without credentials during dev)
import { createContext, useContext, useState, useEffect } from 'react';
...
- reputation score 1
Score of 3
2 answers
490 views
Firebase Hosting GitHub Action fails with "supplied version is the current active version" but changes are still deployed
I'm using the FirebaseExtended/action-hosting-deploy@v0 GitHub Action to deploy a Flutter web application to Firebase Hosting. Every time I push changes to my code, the action runs and fails with an ...
- reputation score 57
Score of 0
1 answer
76 views
Xcode Firebase Analytics Framework Shallow Bundles
I've just updated one of my iOS apps in Xcode. Its uses Firebase. iOS version all works fine, and is already uploaded to App Store Connect.
The app also has a Mac version using Catalyst. However, when ...
- reputation score 43
Score of 2
0 answers
95 views
How do I wait my program thread for something to happen in Spring Boot and then wake it up?
I am writing this backend software where I need to send Firebase notifications to the client (a tablet), and when I send the notification itself (wrapped in a method) I want my thread to wait 10 ...
- reputation score 21
Score of 0
1 answer
76 views
Failure to create a new Firebase project: Failure to add Firebase to Google Cloud Platform project. 403 PERMISSION_DENIED
This is the first time I'm learning Flutter and Firebase.
I tried to create a new project using the command flutterfire configure inside a flutter project named "notes".
And here's what I've ...
- reputation score 11
Best practices
0
votes
3
replies
90
views
How to suggest movies that the user didn't see already in real time?
I am building a simple school project, and the idea is that users form a group together, then an activity (for example movie activity), and then in that activity the app suggests movies for every ...
- reputation score 8
Score of 1
0 answers
86 views
Firebase Firestore BigQuery Export extension is automatically deleted after about one day
I’m using the Firebase Firestore BigQuery Export extension. The extension installs successfully and starts streaming Firestore changes into BigQuery, but after approximately one day it disappears from ...
- reputation score 11
Score of 2
1 answer
337 views
Android Credential Manager Google Sign-In fails with DEVELOPER_ERROR and "Unknown calling package name 'com.google.android.gms'"
I have been using Credential Manager for several months, but recently in March the sign-in in my application stopped working. The app freezes and it becomes impossible to complete the sign-in process.
...
- reputation score 1
Score of 0
0 answers
84 views
Angular: An error occurred while prerendering route
I have an Angular v21 app that I've configured to use SSR, and it is failing on certain prerendered routes while trying to build, with unclear errors. I've looked around and tried different ...
- reputation score 1
Score of 0
1 answer
107 views
Broken session_start in Firebase for Android
I've got a random issue in my Android application where in most Firebase crash logs I have an obscene amount of session_start events coming out of nowhere. I've never seen this on my other projects, ...
- reputation score 2077
Advice
1
vote
1
replies
76
views
Play console rejecting app for not way of showing data removal
Recently I integrated Firebase analytics and crashlytics to track user events and detect crashes to optimize app performance.
In my app, I don't have any single user information, I just track to know ...
- reputation score 2830
Score of 0
1 answer
92 views
Firestore in MongoDB compatibility mode gives error: Firestore API data access is disabled
Using Firestore SDK for NodeJS:
initializeApp();
const db = getFirestore("db-name");
.....
const ref = db.doc(`${firestoreCollectionUsers}/${data.auth.uid}`);
const doc = await ref.get();
...
- reputation score 469
Advice
0
votes
7
replies
160
views
Using both Supabase and firebase in the same project
I am working on an application where I am using Supabase for auth and a database table to store records and Firebase now I am gonna use it for messaging and hosting purposes. So am I doing right or ...
- reputation score 1
Best practices
0
votes
1
replies
107
views
What GitHub repo structure is recommended for a full-stack Firebase project?
I'm working on a Firebase project that has a Flutter mobile app and static website (that uses Firebase Hosting), and it uses services such as Cloud Functions, Firebase Auth, and Cloud Firestore. ...
- reputation score 440