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
1 answer

Implementing Heterogeneous RecyclerView using firebase

I am trying to implement multiple view or so called heterogeneous recyclerview using firebase realtime database. I found a example of heterogeneous recyclerview implementation on github. I followed this to implement on firebase. But my code didn't…
0
votes
1 answer

Can't make viewholder final after firebase UI update

I updated my com.firebaseui:firebase-ui-database package from 1.1.1 to 3.3.1. It's seems that I can't use populateViewHolder anymore in the FirebaseRecyclerAdapter. Instead I should use onBindViewHolder. Which I assume is fine, but when I call the…
2hTu2
  • 378
  • 4
  • 19
0
votes
1 answer

FirebaseUI with dependency injection

I am using dagger for dependency injection, and all my activities are dagger injected: @Suppress("unused") @Module abstract class MainActivityModule { @ContributesAndroidInjector abstract fun contributeMainActivity(): MainActivity } So…
Jack Guo
  • 3,959
  • 8
  • 39
  • 60
0
votes
1 answer

Firebase does not work properly

I have an online quiz app in Firebase. If my phone is in English, the app works fine, but when it change into Turkish, Piccaso does not load image.Please help me I can not find a solution for over a week In this case my phone is in English In this…
0
votes
1 answer

How to pass a query to FirestoreRecyclerOptions?

I am using a FirestoreRecyclerAdapter to display my items in a recyclerView. Using searchView, i am able to create a query: querySearch = FirebaseFirestore.getInstance() .collection("App").document(" " +…
AWE
  • 64
  • 4
  • 14
0
votes
2 answers

Gradle build errors in Firebase UI dependency

dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0-alpha3' implementation 'com.android.support:exifinterface:28.0.0-alpha3' implementation…
0
votes
1 answer

How do I create a Storage Reference for dynamic Images in Firebase Storage

I am currently building a catalog App and these catalogs are basically images that I have saved in firebase storage. I am currently using the code below to make reference to them. However, these images need to be updated on a weekly basis with new…
0
votes
1 answer

Using FirebaseUI for firebase recyclerView in android

i am a new comer in android development and facing some problems using firebase ui. i wanted to retrieve data from my firebase database and show it on my recyclerView. but i am constantly getting an error while making FirebaseRecyclerAdapter. Here…
0
votes
1 answer

how to add import for FirebaseList Adapter using FireBaseui:Firebase dependency

I want to retrieve some data from firebase using Firebaselist adapter but i cannot add dependencies to import com.firebase.ui.database.FirebaseListAdapter; it shows error in Android Manifest...something about version i don't know how to…
0
votes
0 answers

How can I access the Flores reference to show each of their children? On Android?

db | Categories | Flowers | 01 | | | | name:"example" | imagen:"example" | 02 | name:"example" imagen:"example" This is the structure of the db and what I want is to show the…
0
votes
1 answer

How to retrieve key value to listview from firebase database?

I have saved date as the key. Now I want to retrieve the dates to the list view. I am aware of how to retrieve the child value to the listview but not sure how to do the same for key values. Below is the code i am using: databaseReference =…
0
votes
1 answer

FirebaseUI unable to auth with Facebook

I was getting "This app is in development mode” error when trying to auth with FirebaseUI + Facebook. This was solved by making the app "available to the general public". After that I'm getting another error which reads "The user does not have…
AlexKost
  • 2,792
  • 4
  • 22
  • 42
0
votes
2 answers

How to notify FirestorePagingAdapter?

I am using FirestorePagingAdapter for showing data from Firestore and paginate the data. I want to refresh the adapter with new data when Firestore changes . notifyDataSetChanged() is not working when ever I want to notify data .currently I am…
0
votes
1 answer

I can't find FirebaseRecyclerAdapter

I'm new to Android studio and am trying to create a card view that will host data using firebase adapter, but I cannot find it? I hope to place the code in my onStart method so I can populate the card, however FirebaseRecyclerAdapter is not…
0
votes
0 answers

Firebase Recycler View duplicate data

I'm trying to retrieve comments from the database but it shows all the comments as duplicate This same listner works fine with fragments but gives duplicate item bug when implemented on Activity private void startListening() { Query query =…