firebaseui

FirebaseUI React: allow user to sign up via email+password without providing their first/last name

旧巷老猫 提交于 2020-08-20 04:57:31
问题 I am using the FirebaseUI React auth component so users can log in via email + password. const uiConfig = { signInFlow: 'popup', signInOptions: [ firebase.auth.EmailAuthProvider.EMAIL_PASSWORD_SIGN_IN_METHOD, ] }; .... <FirebaseAuth uiConfig={uiConfig} firebaseAuth={firebase.auth()}/> However, the registration form wants the user's first and last name. I don't want the user to provide this information at the time of registration. How do I customize the component to remove the name input from

FirebaseUI React: allow user to sign up via email+password without providing their first/last name

ε祈祈猫儿з 提交于 2020-08-20 04:57:24
问题 I am using the FirebaseUI React auth component so users can log in via email + password. const uiConfig = { signInFlow: 'popup', signInOptions: [ firebase.auth.EmailAuthProvider.EMAIL_PASSWORD_SIGN_IN_METHOD, ] }; .... <FirebaseAuth uiConfig={uiConfig} firebaseAuth={firebase.auth()}/> However, the registration form wants the user's first and last name. I don't want the user to provide this information at the time of registration. How do I customize the component to remove the name input from

Proguard configuration for Firebase-UI library

倾然丶 夕夏残阳落幕 提交于 2020-08-17 06:57:27
问题 When creating a APK with proguard enabled, the following exception is thrown when using the FirebaseRecyclerAdapter from the Firebase-UI library ( com.firebaseui:firebase-ui:0.3.0 ): java.lang.RuntimeException: java.lang.NoSuchMethodException: <init> [class android.view.View] at com.firebase.ui.FirebaseRecyclerAdapter.onCreateViewHolder(FirebaseRecyclerAdapter.java:168) The debug version (without proguard) works fine. Who has a working proguard config for Firebase-UI? My current proguard

Proguard configuration for Firebase-UI library

戏子无情 提交于 2020-08-17 06:57:21
问题 When creating a APK with proguard enabled, the following exception is thrown when using the FirebaseRecyclerAdapter from the Firebase-UI library ( com.firebaseui:firebase-ui:0.3.0 ): java.lang.RuntimeException: java.lang.NoSuchMethodException: <init> [class android.view.View] at com.firebase.ui.FirebaseRecyclerAdapter.onCreateViewHolder(FirebaseRecyclerAdapter.java:168) The debug version (without proguard) works fine. Who has a working proguard config for Firebase-UI? My current proguard

“Failed to notify dependency resolution listener.” Error when importing FirebaseUI

放肆的年华 提交于 2020-08-08 05:51:20
问题 When I implement firebaseui, I encounter this error: Failed to notify dependency resolution listener. The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[11.0.2,11.0.2], [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies. And this is my dependencies: dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'com.android.support

Android FirebaseUI sign in with Google error for release key

天大地大妈咪最大 提交于 2020-07-14 07:12:25
问题 I'm getting the the Developer (Code:10, message:10:) error when trying to sign in using Google Sign-in while using FirebaseUI's Authentication. All works well on development, but when I sign my bundle using my upload key and then run it on a device, it fails. I looked at associated questions here, here and here and the answers didn't help. As you'll see below, I've tried their recommendations. What I've tried: Add SHA1 fingerprints to the Project Settings at the Firebase Console for debug,

Retrieving data using FirebaseRecyclerOptions [duplicate]

岁酱吖の 提交于 2020-07-10 09:57:24
问题 This question already has answers here : FirebaseListAdapter not pushing individual items for chat app - Firebase-Ui 3.1 (2 answers) Closed last year . I need help in retrieving data using firebase recycleview adapter. I have tried many ways but I am unable to retrieve data. My main class fragment goes thus. public class AllUsers extends AppCompatActivity { RecyclerView recyclerView; Query databaseReference; FirebaseRecyclerOptions<Users> options; FirebaseRecyclerAdapter<Users,

How to convert Firebase Old Adapter method to New Adapter method?

妖精的绣舞 提交于 2020-07-10 07:30:31
问题 In the main Screen of my app I was trying to build a Search View with Edit Text. I have made a recycler view below the search view. My app is a music app. So I want to build a function like when user search any song from firebase then the song name and song artist should be displayed in the recycler view. So i have read a code for do this particular work. But I am facing a problem like In my code there was a FirebaseRecyclerAdapter method which was used to get values from firebase from my

How to convert Firebase Old Adapter method to New Adapter method?

不打扰是莪最后的温柔 提交于 2020-07-10 07:30:08
问题 In the main Screen of my app I was trying to build a Search View with Edit Text. I have made a recycler view below the search view. My app is a music app. So I want to build a function like when user search any song from firebase then the song name and song artist should be displayed in the recycler view. So i have read a code for do this particular work. But I am facing a problem like In my code there was a FirebaseRecyclerAdapter method which was used to get values from firebase from my