Firebase Android Auth object no callbacks firing

ぐ巨炮叔叔 提交于 2019-12-10 01:02:41

问题


I've been going through the Firebase docs to set up a user authentication system in my android app. For some reason however, it doesn't look like any of the callbacks are running on my FirebaseAuth object!

For example with setting up the Facebook authentication as instructed here

private void handleFacebookAccessToken(AccessToken token) {
    Log.d("AUTH", "handleFacebookAccessToken:" + token.getToken());
    // ...
    AuthCredential credential = FacebookAuthProvider.getCredential(token.getToken());
    Log.d("AUTH", "Credential: "+credential);
    mAuth.signInWithCredential(credential)
            .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
                @Override
                public void onComplete(@NonNull Task<AuthResult> task) {
                    Log.d("AUTH", "signInWithCredential:onComplete:" + task.isSuccessful());

                    // If sign in fails, display a message to the user. If sign in succeeds
                    // the auth state listener will be notified and logic to handle the
                    // signed in user can be handled in the listener.
                    if (!task.isSuccessful()) {
                        Log.w("AUTH", "signInWithCredential", task.getException());
                        Toast.makeText(LoginActivity.this, "Authentication failed.",
                                Toast.LENGTH_SHORT).show();
                    }

                    // ...
                }
            });
}

Everything fine on the part of Facebook but when it comes to signing in with the retrieved fb credentials, the signInWithCredential function doesn't run any callbacks and nothing seems to happen in my user database.

Furthermore I've tried the much more simpler

mAuth.createUserWithEmailAndPassword(etUserID.getText().toString(), etPassword.getText().toString());

and nothing happens as well. I've enabled both providers in my Firebase console and downloaded the latest google-services.json file for the project. Am I missing something?

EDIT: Just tried running the quick-start authentication demo and it doesn't work as well. I do see on my emulator that this app won't run unless I update google services. Is this the cause of this error? I tried updating google services on various emulators and that just returns an error.


回答1:


Got it working only on a real android device, but had no lucky with the emulator.

For the device, you'll need to add the following dependency in your app gradle file:

compile 'com.google.android.gms:play-services-auth:9.0.2'

I haven't tested, but it seems that if you update the emulator image with a newer google play services, it also should work.

Hope it helps.




回答2:


Solved it thanks to @feroult post and other resources. In my case OnCompleteListener was never called after I updated the build.gradle with the new version of Play Services Library and Firebase libraries. The solution is to update the Play Services App installed on the Emulator.

In my case it started working with 11.0.4 version of Play services library and 11.3.02 version of Play Services app installed on Emulator.




回答3:


It seems like the issue is caused by certain emulators not supporting the latest versions of Google Play Services! (You will see an error in logcat) Galaxy Nexus 5x API 23 w/ Google APIs seem to work with logins.




回答4:


I had the same issue and eventually in my case i forgot enable it in firebase console




回答5:


On a physical device, I did need to update Google Play Services in order to get the callback to work




回答6:


I had the same problem here, and the solution was very simple: stop using the emulator and start using a physical device to test the application. I don't know why, but it seems like the emulator has some problems dealing with firebase :/



来源:https://stackoverflow.com/questions/37375983/firebase-android-auth-object-no-callbacks-firing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!