1,887 questions
0
votes
0
answers
137
views
Can't build Xcode project when using the Swift Package Manager
I wanted to move away from CocoaPod because of the latest changes and now using all the packages with Swift Package Manager.
The only one that I have issue with is FirebaseUI-OS/Storage version 15.1.0....
1
vote
2
answers
95
views
Failed to resolve: com.github.firebase:FirebaseUI-Android:version-9.1.0-dev-387e7c2e01-1
There is a bug in Firebase UI 9.0.0 that was corrected in a later commit. I am trying to include this later commit to my app project from Jitpack:
https://jitpack.io/#firebase/FirebaseUI-Android/...
1
vote
1
answer
65
views
Firebase Auth (default) UI Action bar Overlapping the email/phone fields
In our app, We are using Firebase Auth Login ui and we have two options Sign in with Email and Sign in with Phone number.
As we have to migrated to Android 15+, but android 15+ Action Bar overlapping ...
0
votes
1
answer
92
views
updating targetSdk 35 and problem firebaseUi auth number phone edge to edge
My Application use
implementation 'com.google.firebase:firebase-auth:23.2.1'
implementation 'com.firebaseui:firebase-ui-auth:9.0.0'
I have a button sign in with phone number to connect with firebase ...
0
votes
1
answer
83
views
FirebaseUI: Email link authentication link results in "Requested action is invalid"
I have a Python/Flask app running on Google App Engine and I use Firebase Auth with FirebaseUI. I've had Google sign-in providers working for some time but I'm now adding email link based sign-ins. I'...
0
votes
0
answers
115
views
django application with firebase authentication
LLMs are failing me on this seemingly simple task, so I'm seeking community advise. I have a django application, which works fine. Both when I develop locally, and in production at https://my.domain
...
0
votes
0
answers
32
views
firebase_ui_localizations fails to generate localizations with error
I have added firebase_ui_localizations to my pubspec and created a firebase_ui_da.arb file for Dansih in the l10n directory, but when I run:
dart run firebase_ui_localizations:gen_l10n
I get this ...
0
votes
0
answers
21
views
Google provider no response after user login
I have a simple snippet involving Firebase Authentication with two options: email/pass and google.
My problem is that users can use the option email/pass smoothly.
Regarding Google provider, it can ...
1
vote
0
answers
97
views
Firebase Auth UI with GoRouter causing GoException on first install
I have a flutter app that uses go router to navigate between screens.
After i added firebase auth UI to my app, I got the error below when I launch my app after the first install:
GoException: no ...
2
votes
0
answers
72
views
firebase_ui_auth's showDeleteConfirmationDialog in ProfileScreen is crashing
I wrap the firebase_ui_auth's ProfileScreen with my own ProfileView for the sake of clear code.
The problem is the App stops, do NOTHING when the Delete Account dialog shows.
account delete ...
1
vote
0
answers
54
views
Cannot use firebaseui when imported as CDN module
I'm trying to get a very basic email/password sign-in working on my firebase website.
I must be importing firebaseui wrong. I'm attempting to import it as a CDN like so:
import * as firebaseui from '...
1
vote
0
answers
124
views
Unable to login with Firebase UI
I'm trying to use the starter code from Firebase UI for setting up google login (with redirect), but it doesn't seem to work.
After I click on sign in with google and select my account, ...
0
votes
1
answer
492
views
Firebase multiple authentication (Google and Apple) with Flutter app
I am having a hard time understanding on how I can design a flutter screen with firebase authentication with multiple login method on the same screen. The Authentication screen (Auth_gate.dart) in my ...
0
votes
0
answers
43
views
The data is not showing in the cardview from Firebase Realtime Database
I'm creating an expense tracker, The app has a login page, and after logging in there are three fragments, Dashboard, Income and Expense. Data is being stored in the database from the dashboard ...
5
votes
4
answers
541
views
Handle Firebase Auth UI errors in Flutter SignInScreen
I am using the firebase_ui_auth: ^1.12.1 package to show SignInScreen but I can't find a way to display a custom message when an error occurs. If, for example, the user enters wrong credentials, I get ...
0
votes
1
answer
54
views
onCreateViewHolder of FirestorePagingAdapter not overriding
im giving maintenance on a code that broke recently, its trying to retrieve data from firebase using FirestorePagingAdapter, it say that the function onCreateViewHolder does not override a method from ...
0
votes
1
answer
116
views
Using firebaseui with Angular Universal - ReferenceError: window is not defined
I have an Angular 16 app, using Angular Fire, firebaseui and I have recently installed Angular Universal.
Whenever I run npm run dev:ssr to enable SSR I receive this error -
./node_modules/dialog-...
1
vote
2
answers
545
views
Firebase Auth Emulator keeps suggesting real Google accounts
TL;DR
Firebase Auth Emulator keeps suggesting real Google accounts.
One in a hundred attempts result in an emulator dummy account popup.
DETAILED
firebase providers setup:
importProvidersFrom(
...
0
votes
1
answer
77
views
How to fix firebase_ui_firestore [Analysis Issue]?
[This error in the image below occurs when trying to build the app.]
(https://i.sstatic.net/QibXK.png)
Note: In pub.dev firebase_ui_firestore there is the same error pointed out!
I have tried flutter ...
1
vote
1
answer
362
views
firebase / firebaseui authentication error in reactjs SPA: u[v] is not a function
There is an error when i try to login with any provider using firebase.
In browser, somehow firebase recovers from this error and im authenticated after 10 seconds. On a mobile device, this takes even ...
2
votes
1
answer
503
views
Firebase Firestore database chat app pagination when tap on the message textfield it automatically scrolls up and not scroll down to the end of list
this is code of paginating data from firestore , here i am using a library called firebase_ui_firestore ^1.5.15 from pub.dev,pagination works fine but here the issue is when i tap on the textfield it ...
0
votes
1
answer
143
views
Skip "Sign in" screen and go directly to phone auth with firebase_ui_auth
I'm starting out with Firebase UI Auth and it's working . But the way I have it coded I'm forcing my user to click an unnecessary 'Sign in with phone' link to initiate phone auth. I'd like to skip the ...
0
votes
0
answers
46
views
How to delete a document from the firestore cloud and the corresponding item in recyclerview?
I use the next code to delete displayed documents in recyclerView from cloud firestore by click on the recyclerView item.
The result is when I click on the item, document is deleted only from ...
0
votes
1
answer
299
views
FirebaseUI doesn't allow users to sign-in to an existing account
So I have a FirebaseUI web app that allows users to create an account. However, when a user tries to sign-in to an account that they created, it asks them to change the password - specifically, it ...
0
votes
0
answers
104
views
Firebase UI Auth ProfileScreen is randomly throwing errors when failing to load the user avatar
This user avatar is very non-critical but is throwing an exception and halting up my app. It's happening in the library code so I can't even exception handle it gracefully. Has anyone encountered this ...
3
votes
1
answer
98
views
google icon not loading on profile page in flutter
I used a pre-existing solution provided by Google Firebase for login in Flutter ( https://firebase.google.com/codelabs/firebase-auth-in-flutter-apps#0 ). There are two providers, Google and Mail. Both ...
2
votes
0
answers
151
views
Why does Firebase Auth UI always direct to the account creation page despite an account with the email existing?
I have implemented the Firebase Auth UI for my web application. The initial process of creating an account works fine and is logged to the record but when I attempt to then use that email address to ...
0
votes
2
answers
520
views
Firebase Authentication email provider only allows new account creation
I have two Firebase projects both of which use Firebase Authentication from Android and iOS. On one project, authentication works properly and as expected.
On the troublesome project, Firebase ...
0
votes
1
answer
217
views
Flutter app - login with firebase + Navigation bar
I am building a Flutter app where I have a login form, which is connected with a firebasee database.
I would like to implement a navigation Bar when the user succesfully logs in.
The first page after ...
1
vote
0
answers
36
views
Kotlin FirestorePagingAdapter with algolia
I have this adapter in kotlin for firebase, to search a project with category it works to filter projects by category, but i want to search by title, searching i found algolia for fonetic search, i ...
0
votes
0
answers
52
views
Firebase_ui_auth SignInPage's EmailAuthProvider displays verbose message in release version of the app. How can I display human readable messages? [duplicate]
This is my implementation. I get really messy error messages.
How can I handle the error messages to be cleaner or catch them and provide my own?
class AuthGateUI extends StatelessWidget {
const ...
1
vote
0
answers
200
views
flutter firebase auth: provider linked user has single dash as email
I noticed this problem using firebase_ui_auth for flutter. But I'm not sure if this is by design or a bug:
I'm using firebase to authenticate users in my app and also allow them to register via a ...
2
votes
1
answer
699
views
FirebaseAuthUI issue keeps trying to sign me up instead of logging in when trying to use email on Android
I'm developing an Android application using Firebase Authentication UI as auth provider, I've enabled both email/password and Google login on the Firebase console but for some reason when I write my ...
1
vote
1
answer
232
views
firebase_ui_oauth_google Import and GoogleProvider is not working
Couldn't resolve the package 'firebase_ui_oauth_google' in 'package:firebase_ui_oauth_google/firebase_ui_oauth_google.dart'.
https://firebase.google.com/codelabs/firebase-auth-in-flutter-apps?hl=en#6
...
0
votes
1
answer
122
views
FirebaseUI Sign-In Not Working with Proguard After Gradle and Java version Updates
I'm encountering an issue while using sign-in functionality in my Android app with FirebaseUI .Initially, it was working correctly with Proguard enabled. However, after making some version changes in ...
2
votes
1
answer
914
views
Customizing and Translating Text in Firebase UI Auth SignInScreen for French Language
I'm working on an app using the firebase_ui_auth package for authentication, and I need to customize and translate the text displayed on the SignInScreen to French. Specifically, I want to provide a ...
8
votes
2
answers
1k
views
FirebaseUI only allowing users to create an account but not sign-in to existing account
I have set up FirebaseUI in my React app so that users can create an account and sign in to said account to access my application. Whenever a user creates an account, it appears to be properly saved ...
1
vote
0
answers
455
views
implementation ("com.firebaseui:firebase-ui-database:8.0.1") not working in kotlin for Android Studio Giraffe | 2022.3.1 Patch 1?
I am new to Coding for kotlin an want to convert my old project from java to kotlin and in this project i'd used firebase database ui for chatting and added below the dependency in build.gradle.kts(:...
4
votes
0
answers
472
views
firebase-ui always shown `create account` page when I try to sign in with email and password
The email [email protected] already registried and has been shown in firebase console user tab:
and now I try to sign in:
I clicked Next button, it say that i need to create a new account with this ...
5
votes
1
answer
859
views
ReactJs and Firebase UI Authentication problems
I thought it would be a good idea to combine a Reactjs frontend with data stored in Firebase, leveraging all the supporting tools it offers, especially authentication.
I've set up a very simple basic ...
1
vote
0
answers
139
views
How to use FirestoreListView (with infinite scroll) in a CustomScrollView in Flutter?
I have a FirestoreListView (from firebase_ui_firestore) in my home of my page in flutter.
FirestoreListView(
scrollDirection: Axis.vertical,
...
1
vote
2
answers
4k
views
How to use Firebase App Check Play Integrity Debug Token?
Following the documentation, we are struggling to make it work with Firebase App Check using a Debug Token for App Check. Currently this is what we ended up upon following the docs.
build.gradle (...
0
votes
0
answers
22
views
FirestoreRecyclerAdapter doesn't show any data on RecyclerView
This is my Firestore DB:
I want to display all items in the kelas collection on RecyclerView.
ClassModel.java
public class ClassModel {
private String deskripsi;
private String guru;
...
0
votes
0
answers
22
views
Error in fetching data using FirestoreRecyclerAdapter in recyclerview crashing app
im developing a Rent car app uising firestore database when i use simple adapter it fetch data correctly from firestore but when i use FirestoreRecyclerAdapter the app crashes. I badly need to use the ...
2
votes
1
answer
365
views
How I can modify the error message in a flutter firebase-ui screen?
I am using the official firebase-ui example from here:
https://github.com/firebase/flutterfire/tree/master/packages/firebase_ui_auth/example
When my cloud functions return an error, the error is shown ...
0
votes
0
answers
44
views
After Phone Verification Application stops running and give me an error. Kotlin Firebase
This is my activity i am trying to go on home activity after phone number verification but app is crashing and I don't know why. i have connected 2 app on firebase one is driver side and second this ...
1
vote
1
answer
189
views
NG8001: 'firebase-ui' is not a known element: [duplicate]
I earlier had a project with firebaseui 4.2.0 and recently created a new project which has firebase ui 6.0.2. My older project code looks like below:
<ng-container *ngIf="core.loggedIn == ...
0
votes
1
answer
49
views
Firestore query returns correct total number of values, but not the actual values
I'm trying to populate a recycler view with data fetched from Firestore, following a few tutorials and this documentation: https://github.com/firebase/FirebaseUI-Android/tree/master/firestore#using-...
-1
votes
1
answer
37
views
Retrieving data from firebase which is stored under key which is generated in other application
I want to retrieve data from a child "Orders" but data is stored under a number then data is stored under a key which is generated in another application but I can't find a way
this is the ...
0
votes
1
answer
193
views
FirebaseUI Authentication on Web by Phone number is not working
I want to configure my website with firebaseUI for web auth so that when a user wants to login then he can do that by entering his phone number but I think i have done some mistake or my code is not ...