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

Firebase Web - .remove() seems like it's not working

I am writing a web application that accesses the Firebase Realtime Database. I just started to have intermittent issues removing records in my app. I have two lines in a row that are supposed to delete two different records. The first signs of the…
0
votes
1 answer

Android Studio and Firebase - Chat app not displaying inputted text

I'm making an Android chat app using Firebase... I don't have any errors in my code and the app compiles. However when I go to test it, the inputted text is not displaying at all ... The original tutorial I was following had slightly different code…
0
votes
1 answer

Managing custom models with list attributes as documents with subcollections

I have a Contact model which holds different attributes and lists of attributes. Now i want to store these in Firestore but with the lists as subcollections of the respective document. A minimal example of the Contact model looks like this (note…
Niels
  • 469
  • 2
  • 6
  • 18
0
votes
0 answers

FirebaseRecyclerOptions throwing error

I have added import import com.firebase.ui.database.FirebaseRecyclerAdapter; and compile 'com.firebaseui:firebase-ui-database:0.4.0' compile'com.firebaseui:firebase-ui-database:1.1.1' in my grade files Still, I am unable to use…
0
votes
0 answers

how to make 2 recyclerView beside each others using firebase UI?

hi I am using Firebase recyclerview UI and I succeed to perform one RecyclerView, but when I continue to add the second, the application creates error. The question is how to add 2 recyclers in the same activity with very simple form? I just want…
user7994394
0
votes
2 answers

onBindViewHolder and onCreateViewholder of FirebaseRecyclerAdapter are not getting called

I am trying to populate a recyclerview using FirebaseRecyclerAdapter fetching details from firebase. Activity code is given below :- private FirebaseRecyclerAdapter adapter; final…
0
votes
1 answer

Firebase not retrieving data when binding using Firebase UI Database to Recycler View (Android)

I am trying to bind data from my firebase database which contains data in the format Food > Image , Text . ie Child food with two children Image and Text. Unfortunately when i run the app and try to retrieve it , it does not display anything. I…
0
votes
0 answers

FirebaseUI InflateException, Error inflating class TextView

I'm trying to sign in with Firebase Auth. When I open the app, I recieve the following error: 03-09 16:25:02.532 20054-20054/? E/AndroidRuntime: FATAL EXCEPTION: main Process:…
0
votes
1 answer

Creating a common Login App using FirebaseUI

I have developed several web applications with the own login forms/logic etc. I would like to simplify these by creating a single dedicated web app to handle all the login logic using FirebaseUI. The way I imagine this working is when the user needs…
CSharp
  • 1,396
  • 1
  • 18
  • 41
0
votes
1 answer

Implementing EndlessRecyclerView on firestore database ui bindings

i am using firebase firestore and latest firebase ui bindings. I want to add data into recyclerview when scrolling. the project uses latest 'com.firebaseui:firebase-ui-firestore:3.2.2' To recognize that we have reached end of RecyclerView i am …
Niyas
  • 717
  • 11
  • 18
0
votes
1 answer

Gradle build errors with firebase ui auth

I am taking a Udacity tutorial on Firebase and when I add the firebase ui auth dependency com.firebaseui:firebase-ui-auth:3.2.2 the build fails with errors. Please refer to the images and assist. Thanks. The dependencies: dependencies { compile…
Sweetie Anang
  • 332
  • 1
  • 3
  • 15
0
votes
2 answers

Is it possible to create 2 FirebaseListOptions<> options based on the value returned from the model class?

I am trying to populate the chat messages using FirebaseListAdapter. Below is the code. FirebaseListOptions options = new FirebaseListOptions.Builder() .setQuery(queryforDisplayMessages, UserChat.class) …
neab
  • 91
  • 1
  • 3
  • 10
0
votes
0 answers

FirebaseRecyclerAdapter vs RecyclerView.Adapter

CategoryActivity class: public class CategoryActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener { RecyclerView recyclerView; List categoryList; @Override …
0
votes
1 answer

Output not showing when the firebase ui upgrade to 3.2.2

When i upgrade my firebase-ui version to 3.2.2 the firebaserecycleradapter doesn't show any output the code of mine. at first when i got multidex error then i upgrade all library version to lastest version on dependency of app lvl gradle and after…
0
votes
1 answer

The Intent of the FirebaseUI is destroyed with the onBackPressed () method, how to prevent from destroying?

my problem is that I use 2 activities, but this problem focuses on the first activity, the A this activity is blank ok. I'm using FirebaseUI, when I start the App, shows me the login options, This is generated by the Auth.getInstance () intent ok I…