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
85
votes
11 answers

How to hide an item from Recycler View on a particular condition?

I am using Firebase Recycler Adapter (Firebase UI Library) to populate Recycler View. I want to hide an item(row) on a condition. I have a LinearLayout containing a recycler view. I set linear layout visibility to Gone in populateViewHolder()…
56
votes
23 answers

In project 'app' a resolved Google Play services library dependency depends on another at an exact version

Trying to create a simple app with FireStore and Google Authentication. Having problem with the gradle: In project 'app' a resolved Google Play services library dependency depends on another at an exact version (e.g. "[15.0. 1]", but isn't …
live-love
  • 48,840
  • 22
  • 240
  • 204
43
votes
13 answers

"This app is not authorized to use Firebase Authentication" in Emulator

I'm getting this error when I try to run my app on emulator. What I've done: I'm using Firebase-UI and running Android O I have the Play Store updated. I've added all the SHA-1 code to Firebase console and the package name matches. In fact…
29
votes
7 answers

Error:Failed to resolve: com.twitter.sdk.android:twitter:2.3.0 - Android Studio

I am getting this error in my log cat Error:Failed to resolve: com.twitter.sdk.android:twitter:2.3.0 When I try adding this dependency: compile 'com.firebaseui:firebase-ui:1.1.1' Can someone please help me out, I am not sure what I am doing wrong.…
SumOne
  • 817
  • 3
  • 13
  • 24
26
votes
10 answers

How to delete a Firebase user from Android App?

I'm trying to code a Delete User method in my Android App, but I have some issues each time I execute it. This method will be executed when a user pushes the Delete account button on an Activity. My apps works with FirebaseUI Auth. Here is the…
24
votes
5 answers

Firebase UI authentication with google fails with message (code:10 message:10)

I've made a chat app that uses Firebase's feature Real-time database. I face a problem with google authentication. The problem started when I downloaded the app from the Play Store, the authentication was working perfectly when I was running the app…
24
votes
8 answers

android manifest merger failed, gms play services / firebase

I am trying to add firebase to my app using the firebaseUI. As the documentations says, I have used the corresponding gms:play-services (11.0.4) with the firebaseUI version (2.2.0) When I sync the gradle files, I receive following…
fogx
  • 1,749
  • 2
  • 16
  • 38
23
votes
3 answers

How to avoid unnecessary Firestore reads with Cache

I have a list of trips data (Large Sets) ordered by date. Existing Behaviour I store all the trips data into SqlLite Db. For every new data added, I used to get a fcm notification and I synced only the new added data using last updated time concept.…
Bikash
  • 1,452
  • 1
  • 15
  • 24
22
votes
2 answers

FirebaseRecyclerAdapter with empty view

I know there are lot of ways to have an empty view for a RecyclerView. But my question is for FirebaseRecyclerView. My layout is:
22
votes
14 answers

Google sign-in Android with Firebase - statusCode DEVELOPER_ERROR

I try to implement Google login in my Firebase connected Android app. When I run the app and press Google Sign In button - nothing happen. And I receive this error in onActivityResult: Status{statusCode=DEVELOPER_ERROR, resolution=null}. My code…
20
votes
4 answers

Handling Firebase ID tokens on the client side with vanilla JavaScript

I am writing a Firebase application in vanilla JavaScript. I am using Firebase Authentication and FirebaseUI for Web. I am using Firebase Cloud Functions to implement a server that receives requests for my page routes and returns rendered HTML. I am…
19
votes
1 answer

Apply a filter on FirebaseRecyclerAdapter

I am using FirebaseRecyclerAdapter to display chat messages. private void attachRecyclerViewAdapter() { lastFifty = mChatRef.limitToLast(50).; mRecyclerViewAdapter = new FirebaseRecyclerAdapter( Chat.class,…
user655561
  • 659
  • 1
  • 9
  • 24
18
votes
3 answers

FirebaseUI authentication with Facebook not working

I am using FirebaseUI-Authentication. Signing in with an email or a Google account is successful, but sign in with Facebook doesn't work. onActivityResult() is not called after AuthUI activity was started and attempted to sign in with Facebook.…
17
votes
2 answers

Could not find FirebaseUI widget error

I am attempting to make a login screen using firebaseui auth for a single-page web app. I copied firebaseui's sample code to create the login screen:
16
votes
2 answers

java.lang.NoSuchMethodError: No virtual method setTokenProvider

Below error occurs whenever i add com.google.firebase:firebase-firestore:19.0.0 to the Gradle and run the app. E/AndroidRuntime: FATAL EXCEPTION: main Process: meter.meter, PID: 13588 java.lang.NoSuchMethodError: No virtual method…
1
2 3
99 100