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
16
votes
9 answers

FirebaseUI Auth - Facebook Login error : Unsuccessful debug_token response from Facebook

I'm trying to integrate FirebaseUI Auth library. Google sign-in and Email sign-in are working fine but I have a problem setting up Facebook Login. This is my code: user = firebaseAuth.getCurrentUser(); if (user != null) { …
14
votes
5 answers

error: cannot access InternalTokenProvider (Firebase/GooglePlayServices)

In my app where I use firebase, firebase-ui, google maps, among others, it worked perfectly. I want to update to the latest version of each library and install Firebase Performance. The error I get is: error: cannot access…
Jose Q
  • 441
  • 1
  • 4
  • 14
14
votes
8 answers

Undefined symbols for architecture x86_64 in Xcode after Firebase update

I updated FirebaseUI to the newest version, and that updated TwitterCore 3.0.0 (was 2.8.0), ever since I get this compiler error in Xcode: Undefined symbols for architecture x86_64: "_TWTRIdentifierForAdvertising", referenced from: …
Ronen
  • 335
  • 4
  • 11
13
votes
3 answers

The supplied auth credential is malformed or has expired

In my Android app I'm signing in via Firebase AuthUI using Google sign in. That part works. Now I tried to sign in using the IdToken but I always get this error message: com.google.android.gms.tasks.RuntimeExecutionException: …
Hugo
  • 462
  • 3
  • 11
13
votes
4 answers

NullPointerException when running from Google Play but not from Android Studio

I'm having a big issue, I do not know what's happening, I've uploaded an app to Play Store because when I was running it on an Emulator or even on my real device it wasn't crashing, but now when I download it from Google Play it says :…
Skizo-ozᴉʞS ツ
  • 19,464
  • 18
  • 81
  • 148
13
votes
2 answers

FirebaseListAdapter not pushing individual items for chat app - Firebase-Ui 3.1

I am making a chat app on Android that uses google firebase to store messages that users write to each other. To display these messages to the users I read them from the database and organize them into a custom ListView with a ListAdapter. This was…
12
votes
1 answer

Android API 31 FLAG_IMMUTABLE Error using Firebase Auth UI

I'm receving the below error in API 31 devices during Firebase Auth UI library(Only Phone number credential), Fatal Exception: java.lang.IllegalArgumentException: com.sstech.racemanager: Targeting S+ (version 31 and above) requires that one of…
Surendar
  • 239
  • 2
  • 12
12
votes
2 answers

Email verification for Firebase Auth UI

I am using firebase auth UI (FirebaseUI-Android) in an android app, where the user can signup with personal email, Facebook, number and Gmail accounts. My question is I need to get email verification when user sign's up with his personal email id. …
ravi
  • 121
  • 1
  • 3
12
votes
7 answers

Using Firebase Storage image with Glide

There are tons of duplicated answers I had tried almost all of them but I am still not able to use Firebase storage image with Glide. First of all I am using docs FirebaseStorage storage = FirebaseStorage.getInstance(); StorageReference…
mehmet
  • 1,558
  • 5
  • 30
  • 41
11
votes
0 answers

Firebase recycler adapter pagination

mFirebaseAdapter = new FirebaseRecyclerAdapter (Restaurant.class, R.layout.restaurant_list_item, FirebaseRestaurantViewHolder.class, mRestaurantReference) I had like 1000…
10
votes
2 answers

Use FirebaseUI with AngularFire2

I haven't found any samples. Is it possible to use the FirebaseUI with AngularFire2? AFAIK the UI is not part of AngularFire2.
Robin
  • 3,512
  • 10
  • 39
  • 73
10
votes
0 answers

How to disable back button after startActivityForResult in FirebaseUI is called?

I know, if I use onBackPressed method, back button is disabled, but my question is, how or where I should use it, if I have .createSignInIntentBuilder() in my activity. It is like making new Activity without java class. @Override protected void…
j22purikas
  • 75
  • 8
10
votes
2 answers

how to implement a SetOnItemClickListener FirebaseRecyclerViewAdapter

how to implement a SetOnItemClickListener event in a Firebase RecyclerView Adapter? I use the example of documentation, chat app: private FirebaseRecyclerViewAdapter mAdapter; RecyclerView recycler = (RecyclerView)…
10
votes
1 answer

How to get obj key from FirebaseListAdapter on Item Click. FirebaseUI

When subclassing FirebaseListAdapter in FirebaseUI how can one get the obj key of the item clicked? FirebaseListAdapter has the following method which gets itemId, but returns long. But I require the object key which is in the default string…
srinivas
  • 4,778
  • 2
  • 32
  • 43
9
votes
1 answer

Firebase UI auth sign in error api exception

Just wondered if anyone is using firebase auth ui 4.2.0 When I start the auth process with a startActivityForResult I get the error back... E/AuthUI: A sign-in error occurred. com.firebase.ui.auth.FirebaseUiException: Error when saving …
aidanmack
  • 518
  • 1
  • 5
  • 16