Questions tagged [firebaseui]

FirebaseUI is a set of binding libraries that simplifies developing applications for iOS, Android, Web and Flutter with Firebase.

FirebaseUI libraries are available for both Android, iOS, Web and Flutter and offers these features for all platforms:

Related tags

1862 questions
7
votes
2 answers

FirebaseUI - Validate displayName before user creation

I am using firebaseui-web-react. In the signup flow, I want to validate the user-provided displayName before the user is created. In particular, I want to make sure the displayName is unique. I know how to validate unique usernames with Firestore. I…
7
votes
0 answers

GraphMethodException: errorCode: 100, subErrorCode: 33, when using latest Firebase UI Auth release

I'm using Firebase UI (Facebook, Google & E-mail), I was using this dependency for Firebase UI: implementation 'com.firebaseui:firebase-ui-auth:4.1.0' But there was a bug so I had to change to: implementation…
7
votes
6 answers

Firebase UI login with Google is failing due to 12500(SIGN_IN_FAILED) error code

I am using Firebase UI to provide login for my app. When i try to login with Google it is giving error message com.firebase.ui.auth.FirebaseUiException: Code: 12500, message: 12500. But i when try to integrate google login directly it is working…
Suresh Pichuka
  • 119
  • 1
  • 7
7
votes
1 answer

Efficiency of searching using whereArrayContains

I am curious as to the efficiency of searching for documents in a collection using this code. As the number of documents in the collection grows and the number of items in the array grows will this search become very inefficient? Is there a better…
7
votes
2 answers

Firebase Auth on Web - How to add spam protection for email/password login

For my website, I want to build my own login form for email/password based authentication using Firebase authentication instead of using FirebaseUI Web. I'll be using createUserWithEmailAndPassword JS function to create new user accounts. But how…
DFB
  • 861
  • 10
  • 25
7
votes
4 answers

Disable account chooser FirebaseUI React

I'm struggling with something that looks like a piece of cake, but I still can't manage to find a solution. I'm implementing a firebase authentication process, with reactjs and firebaseUI web react. Everything is just fine, except the fact that when…
Rafik Tighilt
  • 2,071
  • 1
  • 15
  • 27
7
votes
2 answers

I can't find populateViewHolder Method in FirebaseRecyclerAdapter class

I want to use FirebaseRecyclerAdapter in my project and I used this code segment in a previous Project FirebaseRecyclerAdapter adapter = new FirebaseRecyclerAdapter
7
votes
5 answers

Only populate viewHolder with messages retrieved from database?

I'm following the Android Firebase Codelab. Here's the project of the Friendly Chat app I'm attempting to modify: https://github.com/firebase/friendlychat-android/tree/master/android I want the MessageViewHolder to be populated only after retrieving…
user8237925
7
votes
3 answers

Cannot resolve method using(com.firebase.ui.storage.images.FirebaseImageLoader)

I'm trying to use the awesome Glide integration provided by FirebaseUI, but I am unable to do so. I have followed everything described here: Downloading images with FirebaseUI Cannot resolve method…
reavcn
  • 300
  • 2
  • 14
7
votes
1 answer

Can I change what information FirebaseUI asks for when a user signs up?

I am making an app with firebase auth functionality for signing in and signing up . When I was searching , I came upon FireBase UI which seemed good . When I saw the auth documentation , the create user method accepted only Email ID and password ,…
Sriram R
  • 2,109
  • 3
  • 23
  • 40
7
votes
5 answers

Android Firebase chat RecyclerView auto scroll to bottom when new item is added

im developing an android chat using firebase. i tried to research about this problem but i cant find a good solutions. hope someone can help me. my problem i want the RecyclerView to auto scroll if new item is added. here is my…
7
votes
2 answers

Unable to hide the Title bar of Authorization Activity using FirebaseUI

I tried to use the following style and then I…
Fahad Saleem
  • 413
  • 2
  • 13
7
votes
1 answer

FirebaseUI and Firebase, what is the difference?

So I'm new to Firebase and I'm trying to figure out if FirebaseUI and Firebase are the same thing. I have walked through the tutorial on firebase.google.com however I noticed that some videos online use the FirebaseUI. What's the difference between…
William Hodges
  • 661
  • 10
  • 24
7
votes
1 answer

Firebase android how to prevent FirebaseRecyclerAdapter automatically updating?

I have a FirebaseRecyclerAdapter which I do not want to keep updating the RecyclerView. This is because I have it so it populates the view with items based on how many 'views' they have in the database. The problem is, if other people view the…
6
votes
1 answer

Protected Route With Firebase

I used Firebase for User Auth in my Next.js Application. I want to protect a user on the client-side. I used firebase firebaseui react-firebaseUI to implement Google Auth. How to secure a Route in the Client-side itself const uiConfig = { …