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
0
votes
0 answers

Firebase RecyclerAdapter not working

I'm trying to display my data from Firebase database into a RecyclerView using Firebase RecyclerAdapter. I am quite new to this and not being able to figure what problem I am facing. import android.content.Context; import…
0
votes
0 answers

super.onBindViewHolder() being called infinitely

I have this fragment as part of my app, and when I click on the button in the nav drawer on the main screen to open the fragment, it starts calling the super.onBindViewHolder() line infinitely and never breaks out of it, so it just kills the…
Cameron
  • 1,281
  • 1
  • 19
  • 40
0
votes
2 answers

FirebaseRecyclerAdapter not calling onBindViewHolder and not displaying data

I'm trying to use a FirebaseRecyclerAdapter to display data on the screen in a RecyclerView, but no data is showing up. I have used the debug mode to determine that onBindViewHolder is not called when a new item is added to the list, but it is…
Cameron
  • 1,281
  • 1
  • 19
  • 40
0
votes
2 answers

Cannot retrieve data in ascending order

I want to retrieve data in ascending order, but received data somehow added to recyclerview in descending order. Firebase Database: What I am doing: DatabaseReference mDatabase =…
0
votes
1 answer

Firestore does not fetch previous data after re-install

I'm using Firebase Cloud Firestore with Firestore UI RecyclerView to display items on MainActivity. Everything works fine except that, when I uninstall and re-install the app, query does not fetch previously added items and only an empty list…
monatis
  • 534
  • 4
  • 8
0
votes
1 answer

How to implement GitHub provider auth using firebase UI in Android

I create an android app that let users to signin using google, Facebook, LinkedIn and twitter account using Firebase UI. I want to integrate GitHub button so that users can signin using their GitHub account. I already read the documentation related…
0
votes
1 answer

Firebase: Error decoding custom claims on client after Facebook login

I have the logic shown in "Access custom claims on the client" in my web app, with the same implementation of b64DecodeUnicode as documented here. After a Google or Email login the custom claims in an ID Token can be base64 decoded, and I can log to…
Simon Ness
  • 2,272
  • 22
  • 28
0
votes
1 answer

Why string can't be converted to object class

What could be wrong in my code? I use HashMap to make update easier in the database, but whenever I try to fetch this data from the database to FirebaseRecyclerAdapter I keep getting an error. I have searched for many similar problems, tried their…
olajide
  • 972
  • 1
  • 13
  • 26
0
votes
1 answer

android manifest merger failed after adding Firebase UI to my dependency

I have upgraded to android studio canary and trying to add firebase UI to my app but am getting the following error: Manifest merger failed : Attribute meta-data#android.support.VERSION@value value=(26.0.1) from…
Armando Sudi
  • 137
  • 1
  • 12
0
votes
2 answers

Can't get data to Listview with FirebaseListAdapter

I could not get FirebaseListAdapter to work, my ListView is always empty in the fragment. What could be the problem? This is my database: My PirmadienisFragment .xml file:
0
votes
1 answer

What do i put in onBindViewHolder to bind my models and populate my RecyclerView?

Right now I'm just trying to use Firebase UI 3.1.1 to populate a recycler view. All the tutorials im seeing are outdated, and the ones that are dated are incomplete. This is what i have so far... private void setUpFirebaseAdapter() { …
0
votes
2 answers

Unable to find KickoffActivity Firebase

I am using this site to build a chatapp, just for learning purposes. https://code.tutsplus.com/tutorials/how-to-create-an-android-chat-app-using-firebase--cms-27397 Unfortunately I always end up getting an error. I found this question how to solve…
0
votes
0 answers

Populating recycler view, but app crashes

I am trying to fetch data from firebase and display it using recyclerview, but app crashes after few seconds. Query q=userRef; FirebaseRecyclerOptions options=new FirebaseRecyclerOptions.Builder().setQuery(q,post.class).build(); …
gaurav
  • 17
0
votes
0 answers

FirebaseUI user null after signin

After choosing my Google account to sign in, the user is returning null. Using the Firebase Console I can see that users get authenticated and I can see it on localstorage. I've been at this for a while now and any help pointing me in the right…
Rory
  • 336
  • 1
  • 4
  • 12
0
votes
1 answer

FirestoreRecyclerAdapter no virtual method getDocument

I am currently converting my Firebase UI components to Firestore UI components. When building the FirestoreRecyclerAdapter and manually call the adapter.startListening() or initialize it via new FirestoreRecyclerOptions.Builder().setLifeCycleOwner()…
JVE
  • 833
  • 6
  • 16