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

How to populate recyclerview in firebase(populateview method is not working)

I tried populating the recyclerview with data from firebase. Used older methods but populateview() doesnt even come after creating a firebaserecycleradapter. My code which works in previous version of android studio but now,the populateview()…
0
votes
1 answer

The .using method from Glide fails to resolve using the FirebaseImageLoader

I'm trying to load a StorageReference from Firebase Storage. I'm using the Glide library and the FirebaseImageLoader class from the FirebaseUI. The .using method fails to resolve. I think the problem is something to do with the context. homeTeam is…
flutter
  • 6,188
  • 9
  • 45
  • 78
0
votes
1 answer

iOS Firebase UI Gives many errors

I get many errors when trying to build the project with (pod 'FirebaseUI', '~> 4.0') dependency. My pod file looks something like this: platform :ios, '9.0' use_frameworks! pod 'Firebase/Core' pod 'Firebase/Database' pod 'Firebase/Auth' pod…
fullmoon
  • 8,030
  • 5
  • 43
  • 58
0
votes
2 answers

Failed to resolve: firebaseui-android.internal:lintchecks:unspecified

I got message: Failed to resolve: firebaseui-android.internal:lintchecks:unspecified when I add implementation 'com.firebaseui:firebase-ui-auth:3.2.0' on dependencies. How to solve them? dependencies { compile fileTree(dir: 'libs', include:…
0
votes
1 answer

OnClickListener for an item on RecyclerView keeps crashing my app

I have implemented a RecyclerView using FirebaseUI in my App wherein it takes me to a particular activity. I have called this Activity as TicketDetailActivity. The app crashes only if I try to direct the intent to this activity and works well for…
Arjun Ram
  • 369
  • 2
  • 18
0
votes
0 answers

FirebaseUI 3.1.x RecyclerView.Adapter

I am integrating a new piece of code and I need to update firebase-ui-database from 0.4.0 to 3.1.3 I am aware of Why I cant use the populateViewHolder override method? but here I am using RecyclerView.Adapter and I do not have the documentation of…
0
votes
0 answers

Cannot apply FirebaseRecyclerAdapter?

Here my MainActivity code package com.proj.hex.hoop; import android.content.Context; import android.content.Intent; import android.media.Image; import android.support.annotation.NonNull; import android.support.v7.app.AppCompatActivity; import…
0
votes
2 answers

Problems with NullPointer

I need to go to the second activity, but when I click the button, it will write to me: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.application/com.example.application.Firebase}: java.lang.NullPointerException …
0
votes
0 answers

FirebaseUI recycleview Isn't working in Fragment

As i was working with firebasui recycleview in fragment my app is crashing everytime I tried to open it.I have done firebaseui recycleview in normal activity and it didn't crash.I couldn't locate the problem.Any kind of help will be really…
Ragib
  • 117
  • 1
  • 10
0
votes
1 answer

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. > while using firebase in my project for UI Authentication

I am building an application with firebase but getting the app:transformClassesWithJarMergingForDebug error. I have checked all dependencies, but I'm not able to figure out the problem. I ma using firebase UI Authentication. Every time when i…
0
votes
1 answer

Android Studio issue with firebase ui storage in Gradle

For some reason when I add compile 'com.firebaseui:firebase-ui-storage:0.6.0' to the dependencies it creates a conflict in the gradle with implementation 'com.android.support:appcompat-v7:27.0.2' Here is a full copy of my Gradle:- apply plugin:…
Enigma
  • 373
  • 2
  • 10
0
votes
1 answer

How to bind multiple Firebase query or FUITableViewDataSource to single UITableView in Swift

Basically, need to query from a different level of Firebase data tree like below. 0--data00 |-1-data10 |-data11 |-2-dat20 child node can be data or next level node, so have to use one query path per level, but want to display and update all…
0
votes
1 answer

Display Firebase database content in a FirebaseListAdapter

I am currently experimenting with Firebase by creating a kind of small chat app. I am able to send data to the database reference, however I would expect it to be displayed thanks to the following code. However that is not the case, I was wondering…
0
votes
1 answer

I Get Empty Screen with Firebase-UI Recyclerview

I am unable to display firebase items on my Recyclerview. DB connection is fine. EDIT: I added startListening() method as linked question's answer suggested. But now my app crashes. It looks like this @Override protected void onStart() { …
hullabaloon
  • 654
  • 2
  • 7
  • 17
0
votes
1 answer

My getItem is not pointing at my current item

Im working with firebaseListAdapter, here I query data and it shows the new results at the bottom of my listview. what I did to bring this values to the top is as below: @Override public Usuarios getItem(int position) { …
Gastón Saillén
  • 12,319
  • 5
  • 67
  • 77
1 2 3
99
100