Getting error to resolve the dns “auth2.googleapis.com” on mobile app but its working while run app on laptop
I am trying to integrate the firebase storage in mobile app. I can upload & download file from firebase correctly by app if i run it on my laptop. When I run the app on mobile, Seeing below error –
Handle huge number of index in firestore queries
` Query query = firestore.collection(“users”)
.document(myUserID)
.collection(“unseen_profiles”)
.whereEqualTo(“country”, myProfileCountryFilter);
Good alternative of firestore in the context of a dating app where users can’t see one profile twice
I’m developing a dating app using Firestore as my database. I’ve structured my data such that all the registered users are stored under users collection & each user has a separate collection under users->user_id->unseen_profiles. This collection stores the profiles that a user has not yet seen.
Optimizing Firestore Reads and Writes for a Dating App with Large User Base
I’m developing a dating app using Firestore as my database. I’ve structured my data such that each user has a separate collection under users->user_id->unseen_profiles
. This collection stores the profiles that a user has not yet seen.
Firestore client java program not able to recognize database. Compiles successfully
I have databases in native and datastore mode. Using windows, Java 21 but the code is simple – actually sample ada lovelace user addition to firestore.
I am running as java program directly from ide – eclipse, because the java program has main function.
How can exclude all the documents of a collection from a firestore query?
I am querying users
collection and all the documents under users
collection has a sub collection namely already_seen_docs
. Now is there any direct way that I can use so that when I am querying users
collection , I can exclude some document’s already_seen_docs
sub collection from the query to only show the docs that a particular user hasn’t seen yet.
Cloud Firestone data is not shown on my app
I am developing Music streaming app by using firebase cloud storage. I connected firebase with my app but firebase data that i upload on cloud storage is not shown on my app. Suggest me the possible solution
How to properly grant permission to all subcollections based off parent document
I’m struggling to figure out how to write my Firestore rules for a sub-collection, and I think this should be doable, but I keep getting permission denied.
In the App, [cloud_firestore/permission-denied] The caller does not have permission to execute the specified operation. occurs only on iOS devices
If an error occurs when a user uses your deployed app, logs are left.
Looking at the log contents.
firestore onSnapshot server only
I want onSnapshot to fail if there is a failed internet connection (getting user record – if none is found I set up a new one).