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

Invalid authentication token after 1 hour - Disk Persistence in Firebase

I'm using Firebase UI Auth to handle email signin in my app and I enabled Disk Persistence so that the data can be accessed offline. But after signed in for an hour in the app, I get this warning in the logcat. W/PersistentConnection: pc_0 - Auth…
6
votes
1 answer

populateViewHolder not executing with FirebaseRecyclerAdapter (Android)

I'm trying to use a FirebaseRecyclerAdapterto populate a RecyclerView in a fragment, with data from my Firebase database. My main problem is that the populateViewHoldermethod is never called, so I got nothing displaying in the RecyclerView. I…
6
votes
2 answers

Firebase UI RecyclerView onClick

I am using Firebase UI FirebaseRecyclerAdapter to populate a RecyclerView. I managed to get click events from components of my item view (the title), but not for anywhere in the item view, which is what I need. I followed google sample. In my…
6
votes
1 answer

Firebase - Auth - discover users who signed up but not verified email

I've set-up a Firebase project which I am using for it's user authentication module. I am also using the firebaseui-web project from Github. My redirect on sign-on is working fine per this code: // FirebaseUI config. var uiConfig = { …
Robin Mackenzie
  • 18,801
  • 7
  • 38
  • 56
6
votes
2 answers

FirebaseUI for Web — Auth - how to re-authenticate?

I'm using FirebaseUI for Web — Auth widget to simplify the auth workflow, and I'm stuck with a problem. Everything works OK the first time. But, after I sign in, the widget contents clears away, and the 'Sign in with ...' buttons never come back.…
5
votes
1 answer

Installing FirebaseUI-ios via Swift Package Manager

I'm attempting to install the FirebaseUI-iOS using the Swift Package Manager. I've tried with both Xcode 14.0 and Xcode 13.4.1. I get the following errors: [![errors with Xcode 14.0][2]][2] [2]: https://i.stack.imgur.com/FklqL.png I've tried with…
Janene Pappas
  • 1,366
  • 12
  • 26
5
votes
3 answers

Why am I getting the error 'No such module FirebaseUI' in swift?

Every time I try to build I get the error 'No such module FirebaseUI' Things I have tried: Clearing derived data running 'pod update' to make sure all dependencies are up to date running my install as arch -x86_64 pod install making sure I am…
David
  • 769
  • 1
  • 6
  • 28
5
votes
0 answers

Firebase Test Lab & Google Pre-launch report Google sign in fails/normal users are unaffected

I’m having a strange issue with Google sign in my app, done using FirebaseUI. I have added the 3 SHA-1 keys needed for OAuth in my Firebase Console (debug, release and app signing key), updated my google-services.json file and made sure everything…
5
votes
1 answer

How to customize theme of FirebaseUI- Web

I would like to customize the logo and colors only. Does anyone know a solution? I only saw solutions for android. Below the code. if (process.browser) { const firebaseui = require('firebaseui') console.log(firebaseui) const ui…
FabioMelo
  • 61
  • 4
5
votes
4 answers

Proguard enabled NoSuchMethodException

I'm not getting this issue, If I do not enable Proguard like this: buildTypes { release { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),…
Android
  • 1,529
  • 1
  • 12
  • 27
5
votes
1 answer

ERROR TS1086 An accessor cannot be declared in an ambient context. get firebaseUiConfig(): NativeFirebaseUIAuthConfig

Building SPA using Angular/CLI 8. Running locally until successfully. Adding firebase auth to app. Got following error message when compiling via VSC: ERROR in node_modules/firebaseui-angular/lib/firebaseui-angular-library.component.d.ts:17:9 …
mxw
  • 51
  • 3
5
votes
0 answers

Directly send user to sign up page with firebase ui

I'm using firebase ui for a project and they only seem to offer sign-in ui by default until a new user tries signing in with a email that hasn't been registered before. Is it possibly to show a sign up button right off the bat? firebase ui repo -…
Sock Monkey
  • 333
  • 2
  • 16
5
votes
1 answer

Cannot resolve symbol "FirebaseRecyclerOptions"

I am making a chat messenger via Firebase but my Android Studio 2.3.2 cannot resolve the symbol of FirebaseRecyclerOptions<> even my app is successfully connected with Firebase and configured correctly to Firebase Realtime Database and…
5
votes
1 answer

How to build unity project with firebaseUI from android library elegantly

I'm trying to create a game with firebase google and facebook login. I know that it is possible to use firebase with unity, but I don't want to create both login methods separately, when something like FirebaseUI exists. So I've created android…
5
votes
2 answers

How to implement Firebase Recycler Adapter in newer version of Android 3.1 and higher?

Basically, what I am trying to do is use a FirebaseRecyclerAdapter and populate the RecyclerView with my custom designed CardView. The code for newer versions has been changed and therefore, I tried implementing it but didn't work. This is the code…
Kaushal
  • 217
  • 1
  • 4
  • 12