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
9
votes
2 answers

How to exclude item from a FirebaseRecyclerAdapter

I have this code in my populateViewHolder: public void populateViewHolder(final CampaignHolder viewHolder, final Campaign campaign, final int position) { String k = getRef(position).getKey(); …
Ali Bdeir
  • 4,151
  • 10
  • 57
  • 117
9
votes
0 answers

Filter data on firebase using Searchview

I am using the FirebaseRecyclerAdapter of Firebase-UI. The listing is working properly, but I'm not able to implement the filter in SearchView. My users database: Firebase Users private DatabaseReference reference =…
k4k4sh1
  • 115
  • 1
  • 10
8
votes
2 answers

Jest Test - The current environment does not support the specified persistence type

I use jest to run some test on my Create React App with Firebase Web SDK coupled with FirebaseUI Whenever I try to run some tests with --env=jsdom - I run into : The current environment does not support the specified persistence type. seems related…
Matthieu Veillon
  • 150
  • 1
  • 2
  • 13
8
votes
2 answers

com.firebase.ui.auth.FirebaseUiException: Provider error - Firebase-UI Authentication Facebook login not working

I am using Firebase-UI authentication using e-mail, facebook, and google providers. E-mail and Google sign in work fine but Facebook sign in is not working. My facebook and firebase dependencies: //Firebase implementation…
8
votes
2 answers

No virtual method zzbqo()Z in class Lcom/google/firebase/FirebaseApp; or its super classes (declaration of 'com.google.firebase.FirebaseApp'

In my android app, there is an error while compiling the app. I am working in the latest android studio and using Firebase UI Auth and Firebase Database all the versions are in same in App level Grade file then why I am getting this…
8
votes
2 answers

How to merge emailAndPasswordAuth with PhoneAuth in Firebase?

I am trying to First SignIn the User using Email and Password, Then after it, I want the user's Phone Number too. So what I did I first Signed the user using his EmailAndPasswordAuthon one Activity(Custom Sign in), and after it, I Signed In the user…
meditat
  • 1,197
  • 14
  • 33
8
votes
6 answers

Android Studio Desugar: Transform Classes with Desugar for Debug fails

My Android Studio project recently stopped building properly. I do not know what caused this issue. Here is what I tried I tried to build my project with different Android Studio versions, i.e. stable and different Canary channel versions, no…
creativecreatorormaybenot
  • 114,516
  • 58
  • 291
  • 402
8
votes
1 answer

How does Firebase Auth UI deal with reauthentication?

I'm using Firebase Auth for my Swift iOS app. Google recommends using Firebase Auth UI as a "drop in" authentication system, but it only handles the initial login. I'm now working on allowing the user to make profile changes, such as email and…
Andy Chou
  • 854
  • 6
  • 5
8
votes
2 answers

Firebase UI - Auth - Use own layout

Is it possible to use my own layout & buttons for Firebase UI Auth on Android? I basically want to implement the screen for choosing the identity provider (google, facebook, etc.) on my own and start the according flow from my click listener (e.g.…
JDC
  • 4,247
  • 5
  • 31
  • 74
8
votes
2 answers

Using GeoFire to Populate Firebase Recycler View in android

I want to populate my recycler view so that, I can see who are the people/places nearby. I am using GeoFire to Query my database, which looks something like this. GeoQuery geoQuery = geoFire.queryAtLocation(new GeoLocation(latLngCenter.latitude,…
8
votes
3 answers

Android manifest merger with facebook and firebase libraries

I've imported in my project 2 libraries (in gradle file): ... /* Firebase UI */ compile 'com.firebaseui:firebase-ui:0.4.0' /* Facebook login */ compile 'com.facebook.android:facebook-android-sdk:4.13.0' but when building my project I have the…
8
votes
2 answers

OAuth2 issues after upgrading firebase

I have a working android app (Maybe better say HAD). The app is using some third party libraries including: Google maps, Firebase, firebaseui. After converting the app to use the new firebase I have stumbled upon two main issues: The firebaseui…
CaptainNemo
  • 1,532
  • 2
  • 22
  • 45
8
votes
2 answers

How to use Firebase List adapter

I'm trying to follow with this tutorial: https://www.youtube.com/watch?v=2J6spwAVP0M but implementing it on my complex app just didn't work so I tried from scratch.. I created this simple MainActivity: public class MainActivity extends…
7
votes
1 answer

Glide gradle not recognizing ModelLoader

I'm trying to use FirebaseUI to retrieve a photo from Firebase Storage and show it directly in my imageview using Glide. In order to do that I've created a ModelLoader as shown in Firebase Documentation: import com.bumptech.glide.Glide; import…
André Nogueira
  • 3,363
  • 3
  • 10
  • 16
7
votes
1 answer

Firebase UI Email Link signin intent extra is null

The following 3 functions are used to set up email and other auth checks (called in order) private void buildSignInIntentBuilder() { ActionCodeSettings actionCodeSettings = ActionCodeSettings.newBuilder() …
Dogemore
  • 590
  • 1
  • 5
  • 18