Expo SDK 48 broke Firebase Auth
I have just upgraded to Expo SDK 48 and it seems I am logged out after every refresh. I downgraded back to SDK 47, and everything works as expected. I am using firebase v9 (v9.17.1), installed with expo install not…
I have just upgraded to Expo SDK 48 and it seems I am logged out after every refresh. I downgraded back to SDK 47, and everything works as expected. I am using firebase v9 (v9.17.1), installed with expo install not…
My Android Studio project was working fine until I updated a plugin accidentally in a pop-up suggestion. After that "Firebase Auth" methods are not working. For example: fAuth = FirebaseAuth.getInstance(); fUser = fAuth.getCurrentUser(); I get the error "cannot resolve method…
We have an application that already publish in Google Playstore Before publish, we have already tested the application to make sure everything is alright After the application publish, the application can't run, only in splash screen, and then everything is…
I am developing an iOS app in SwiftUI and using Firebase to send push notifications. Now the push notification works fine in real device (my iPhone 11 with iOS 16.3.1). My iPhone can receive push notifications by sending test messages…
I have a large collection of large documents stored in Firestore. As fetching the entire collection would be costly, I would like to fetch a list of document ids for my user and only fetch the document data after my…
I have created a custom object so that I can save/load data from my Unity game into a Firebase Database. The custom object Result consists of a list of tuples List<int,int,int)>. public class Result { public List<(int,int,int)> results; public Result(List<(int,int,int)>…
I am facing an Undefined symbol error in XCode project and cannot solve it. My latest build app is already used with ARCore, Firebase, and Facebook SDK. And it builds normally on Android and IOS. In this update, I need…
I am creating a trigger function using Firebase Cloud Functions in TypeScript, and would like to assign the type of the data held in the snapshot directly in the onCreate function as such: import { firestore } from "firebase-functions/v1" import…
I'm trying to import Angular firebase into a project import * as firebase from "firebase" falls into error Cannot find module 'firebase' or its corresponding type declarations .ts(2307) and I ran the command to install @angular/firebase: npm I firebase @angular/fire…
I am retrieving longitude and latitude values of each user from firebase but problem is that i want to add that values of each user in one list so there are many list that's why I'm using arraylist of arraylist.…