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

Value of type 'ViewController' has no member 'authUI'?

I am new to iOS Development..I want to implement firebase impolite UI This is my ViewController file import UIKit import Firebase import FirebaseCore import FirebaseAuth import FirebaseUI import FirebaseFirestore class ViewController:…
demo
  • 672
  • 3
  • 9
  • 34
0
votes
1 answer

android FirebaseRecyclerAdapter click on item not working

I am showing some data from Firebase database in my android project, but when I am clicking on that item nothing is triggering I mean click is no working This is my Activity public class Notification extends AppCompatActivity { private…
sam999
  • 115
  • 1
  • 13
0
votes
1 answer

Firebase query does not display chat

I have a method for a chat app, everything seems to run with no errors but every time I try to type something nothing pops up. When users log in, the onActivityResult shows the success message: protected void onActivityResult(int requestCode, int…
0
votes
2 answers

java.lang.RuntimeException: Layout cannot be null. Call setLayout

I keep getting this error when running my chat app: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.lbwde.senioraid/com.example.lbwde.senioraid.MainActivity}: java.lang.RuntimeException: Layout cannot be null. Call…
0
votes
1 answer

FirebaseUI Firestore not retrieving data on iOS

The documentation for FirebaseUI-Firestore iOS is not very thorough, I've implemented the code but my collection view does not get populated: class HomeViewController:UIViewController { @IBOutlet weak var collectionView: UICollectionView! var…
rednuht
  • 1,724
  • 16
  • 27
0
votes
1 answer

How to implement firebaseUI in IOS

I new to IOS Development.I am basically android developer I want to implement firebaseUI for login using mobile number and email I got doc here https://firebase.google.com/docs/auth/ios/firebaseui?authuser=0. But i am getting compiletime…
Gowthaman M
  • 8,057
  • 8
  • 35
  • 54
0
votes
2 answers

How to get data by parameter from Firebase database in Android?

I am making a app, and I have a Firebase real-time database with following JSON structure: { "learnhtml": { "1534958785102": { "id": "1534958785102", "title": "What is html", "details": "What is html", "code": "What is…
0
votes
0 answers

How to use pagination button with FirestorePagingAdapter from Firebase UI?

I followed the FirebaseUI doc about firestorepaging adapter, but now I intend to to reload "next page" using a button? Can somebody give guidance how to proceed from here? Query baseQuery = mItemsCollection.orderBy("value",…
0
votes
0 answers

FirebaseUI causes DexException Multiple Dex Files

I am using FirebaseUI to try out the RecyclerViewAdapter. When I try to run the app the gradle build doesn't succeed and gives these errors: Errors shown by Gradle This doesn't happen when I take out the FirebaseUI Dependency. dependencies…
0
votes
1 answer

Firebase UI recycler view adapter onDataChanged get reference to the data that changed

Im using firebase ui recyclerview adapter, as I understand it, when the acivity starts onDataChanged is called and then for every subsequent change in the database it is called again, what I want to do is check every child the first time…
0
votes
2 answers

RecyclerView with FirebaseRecyclerAdapter remains empty

I'm currently trying to build an app using Firebase Realtime Database, I already have some data there, which are structured like this (excerpt of the exported JSON) { "userdata" : { "593QfAvxxxxxxxxxxxHqCMA3" : { "calcentries" : { …
0
votes
1 answer

save users confirmed phone number from firebase ui auth phone number authentication system

/** * @return {!Object} The FirebaseUI config. */ function getUiConfig() { return { 'callbacks': { // Called when the user has been successfully signed in. 'signInSuccess': function(user, credential, redirectUrl) { //…
0
votes
1 answer

How do I increase/decrease counter using FirebaseUI for Android without delay?

I created something similar to a subscription/like counter using Firebase Real-time Database and Firebase's cloud functions (using a transaction): // This is a cloud function that increases subs by 1 export const onSubscriberCreate =…
0
votes
1 answer

Firebase RecyclerView UI not showing

I have been trying to implement firebase ui in my app with recyclerview. I have items on my firebase database which i want to with firebase ui recycler view. So far, i think i have done everything right, however, when i run my app it still shows…
Ben Ajax
  • 668
  • 2
  • 13
  • 27
0
votes
1 answer

How to store posts created by FirebaseUi in the app?

I have an Activity which retrieves data from Firebase and a post is created. But it has to get reloaded if it is removed from recent app or stopped. I want to store this permanently in the app. How can I do that? My Activity: public class…