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…
currently I am implementing an application and using Firebase authentication I would like to make a pop up which appears inside the app if the connectivity got lost unfortunately when I cut the network connectivity, the application logs the user…
I'm trying to sign in the user in anonymous mode automatically using firebase anonymous authentication, only if the user is not already registered and signed. Using shared preferences, I check during the appearing of the splash screen if the user…
I am getting this errors in console Uncaught TypeError: Cannot destructure property 'user' of '(0 , hooks_use_auth_listener__WEBPACK_IMPORTED_MODULE_3_.default)(...)' as it is undefined. and The above error occurred in the <App> component: at App (http://localhost:3000/static/js/bundle.js:46:75) I don't know what the problem is…
Introduce the problem I use an email to log in. If I log out and try to log in to the same email using Google, the UID of the account changes. I can't change back to the old UID. How…
I am new in Flutter and trying to learn Firebase. In the given below code,I am trying to get data of currentUser that is logged in. But I get _CastError (Null check operator used on a null value). I tried…
i work with jetpack compose and kotlin, when i add new dependency (i don't know which one cause error) after i sync dependency and run app, error like below, i don't know why What went wrong: Execution failed for task…
I can successfully login with the below code, however I don't believe react is receiving any auth data back form google to update the current user in react. I know I am missing something here but I don't know what.…
I am using the go_router and Firebase Auth for my web application but can not properly set it up. I tried this: class AuthService { static final FirebaseAuth _firebaseAuth = FirebaseAuth.instance; static User? get currentUser => FirebaseAuth.instance.currentUser; static bool isLoggedIn()…