Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Android Auth object no callbacks firing

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.

like image 793
tetutato Avatar asked May 22 '16 15:05

tetutato


3 Answers

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.

like image 113
feroult Avatar answered Nov 15 '22 11:11

feroult


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.

enter image description here enter image description here

like image 29
vovahost Avatar answered Nov 15 '22 12:11

vovahost


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.

like image 3
tetutato Avatar answered Nov 15 '22 11:11

tetutato