I received an email from Facebook that my app’s login via Facebook was using an old SDK and I need to update to a new one (version 9). In my gradle I see this line: implementation ‘com.facebook.android:facebook-login:4.40.0’ which is the only line mentioning facebook (though I do the login using firebase implementation ‘com.firebaseui:firebase-ui-auth:4.3.1’ so that ..
Category : firebase-authentication
When authenticating using Firebase Auth, I want to auto input the code that is received via SMS. I am able to receive SMS and go through auth process manually, but when I use SmsRetriever, the app crashes and then the bottom sheet dialog shows up. This is everything that that appears in Logcat: java.lang.RuntimeException: Error ..
I’m using Firebase Auth and my sign in provider is Phone .OTP flow was working fine in older version but after upgrading firebase auth version to 20.0.2 and targetSDk version to 29, onVerificationCompleted is not getting called because of this OTP auto retrieval is also not working . Implemented all steps using official Documentation Older ..
I created an upload image functionality in my app. The image uploads and shows for the user and returns "uploaded" upon success. I want to store the same image url that is being stored in the storage to be in the current users field in the database. But the code I’ve written still doesn’t insert ..
Currently I have an app I’m developing for android with android studio. I’m using firebase authentication and database. I’ve gotten to the point where I’m trying to set up messaging between users, where users can have conversations and chat with other users. Has anyone done this before using user Id on fire base or something ..
I would like to use Google Authenticator as a 2auth factor in my android app, generating the qrcode or config key but I couldn’t find any docs ou videos about.How may I do that? Source: Android..
I am getting the error…Please have a look on Screenshot of the error please guide me A problem occurred evaluating project ‘:app’. ASCII When ever i try to build the app.I just purchase a source code for learning purpose as i am a very beginner in android developemt Source: Android..
I am implementing normal sign-in flow in FirebaseUIAuth However, startActivityForResult is never fired, hence The Fragments where FirebaseAuth.getInstance() is required crashes. I have logged onActivityResult, the log never appears which confirms my case. Here is the minified code of functions involved. protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); binding = ActivityMainBinding.inflate(getLayoutInflater()); View view = binding.getRoot(); setContentView(view); ..
I am writing my first app in kotlin and am using FirebaseAuth & AuthUI for authentication. My login screen works perfectly, and looked like: Now I am trying to change my AppTheme’s parent to "Theme.MaterialComponents.NoActionBar" (from "Theme.AppCompat.NoActionBar") but the login screen changed to: I call the login screen like so: startActivityForResult( authUI.createSignInIntentBuilder() .setAvailableProviders(providers) .build(), RC_SIGN_IN ..
So weird about Android Firebase Authentication This is my code fun createAccount(email: String, password: String){ mAuth.createUserWithEmailAndPassword(email, password) .addOnCompleteListener { } .addOnFailureListener { Log.d("mAuth", "OnFailureListener $it") } .addOnCanceledListener { Log.d("mAuth", "OnCanceledListener") } } Then it came to addOnFailureListener, and this is the log 2021-01-15 19:12:41.135 1073-1799/com.google.android.apps.nexuslauncher E/ActivityThread: Failed to find provider info for com.google.android.apps.wellbeing.api 2021-01-15 19:12:42.122 ..
Recent Comments