skip to Main Content

Flutter errors when I log out

I have several errors in my project when an user logs out. The errors are like this: Notifying id token listeners about a sign-out event. D/FirebaseAuth( 8062): Notifying auth state listeners about a sign-out event. W/Firestore( 8062): (24.7.0) [Firestore]: Listen…

VIEW QUESTION

React native – Firestore Could not reach Cloud Firestore backend: code=permission-denied

Im using Firebase with React-Native and Expo. Firebase.js import { initializeApp } from "firebase/app"; import { getFirestore, initializeFirestore } from "firebase/firestore"; import { getAuth } from "firebase/auth"; import Constants from "expo-constants"; const firebaseConfig = { apiKey: Constants.manifest.extra.apiKey, authDomain: Constants.manifest.extra.authDomain, projectId:…

VIEW QUESTION

google play services problem in flutter firebase

W/GooglePlayServicesUtil(16697): com.example.try_1 requires the Google Play Store, but it is missing. E/GooglePlayServicesUtil(16697): GooglePlayServices not available due to error 9 W/Firestore(16697): (24.7.0) [GrpcCallProvider]: Failed to update ssl context: com.google.android.gms.common.GooglePlayServicesNotAvailableException this is what prints me in the terminal of android studio when…

VIEW QUESTION

Firebase – How to do this on recyclerview in android using firestore

This is the result of RecyclerView: Firestore database schema: this is the code I am using. This only retrieve data like in a image db.collection("Expenses") .whereEqualTo("Email",email) .whereGreaterThanOrEqualTo("Date",MonthFirstDate) .whereLessThanOrEqualTo("Date",TodayDate) .orderBy("Date") .get() .addOnSuccessListener(new OnSuccessListener<QuerySnapshot>() { @Override public void onSuccess(QuerySnapshot queryDocumentSnapshots) { if…

VIEW QUESTION
Back To Top
Search