I want to integrate Google sign in my app but it did not pursue me to another activity it shows the only authentication failed in emulator but when I test it on the real device there app stops on clicking google sign in button. Here is my code below
import android.content.Intent;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Toast;
import com.google.android.gms.auth.api.Auth;
import com.google.android.gms.auth.api.signin.GoogleSignInAccount;
import com.google.android.gms.auth.api.signin.GoogleSignInOptions;
import com.google.android.gms.auth.api.signin.GoogleSignInResult;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.SignInButton;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.Task;
import com.google.firebase.auth.AuthCredential;
import com.google.firebase.auth.AuthResult;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.auth.FirebaseUser;
import com.google.firebase.auth.GoogleAuthProvider;
public class googleact extends AppCompatActivity {
SignInButton button;
FirebaseAuth firebaseauth;
private final static int RC_SIGN_IN=2;
GoogleApiClient mGoogleApiClient;
FirebaseAuth.AuthStateListener mAuthListener;
@Override
protected void onStart() {
super.onStart();
firebaseauth.addAuthStateListener(mAuthListener);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_googleact);
button =(SignInButton) findViewById(R.id.googlebtn);
firebaseauth = FirebaseAuth.getInstance();
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
signIn();
}
});
mAuthListener=new FirebaseAuth.AuthStateListener() {
@Override
public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
if (firebaseAuth.getCurrentUser() !=null){
startActivity(new Intent(googleact.this, gprofile.class));
}
}
};
// Configure Google Sign In
GoogleSignInOptions gso = new
GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken(getString(R.string.default_web_client_id))
.requestEmail()
.build();
// Build a GoogleApiClient with access to the Google Sign-In API and
the
// options specified by gso.
mGoogleApiClient = new GoogleApiClient.Builder(this)
.enableAutoManage(this /* FragmentActivity */, new
GoogleApiClient.OnConnectionFailedListener() {
@Override
public void onConnectionFailed(@NonNull ConnectionResult
connectionResult) {
Toast.makeText(googleact.this,"something went wrong",
Toast.LENGTH_SHORT).show();
}
})
.addApi(Auth.GOOGLE_SIGN_IN_API, gso)
.build();
}
// Configure Google Sign In
//GoogleSignInOptions gso = new
GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
// .requestIdToken(getString(R.string.default_web_client_id))
// .requestEmail()
// .build();
private void signIn() {
Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(mGoogleApiClient);
startActivityForResult(signInIntent, RC_SIGN_IN);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
// Result returned from launching the Intent from
GoogleSignInApi.getSignInIntent(...);
if (requestCode == RC_SIGN_IN) {
GoogleSignInResult result =
Auth.GoogleSignInApi.getSignInResultFromIntent(data);
if (result.isSuccess()) {
// Google Sign In was successful, authenticate with Firebase
GoogleSignInAccount account = result.getSignInAccount();
firebaseAuthWithGoogle(account);
} else {
Toast.makeText(googleact.this,"AUTH WENT WRONG",
Toast.LENGTH_SHORT).show();
}
}
}
private void firebaseAuthWithGoogle(GoogleSignInAccount account) {
AuthCredential credential =
GoogleAuthProvider.getCredential(account.getIdToken(), null);
firebaseauth.signInWithCredential(credential)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (task.isSuccessful()) {
// Sign in success, update UI with the signed-in
user's information
Log.d("TAG", "signInWithCredential:success");
FirebaseUser user = firebaseauth.getCurrentUser();
// updateUI(user);
} else {
// If sign in fails, display a message to the user.
Log.w("TAG", "signInWithCredential:failure",
task.getException());
Toast.makeText(googleact.this, "Authentication
failed.",
Toast.LENGTH_SHORT).show();
// updateUI(null);
}
// ...
}
});
}
}
here below is the logcat 07-02 13:55:11.367 24547-24547/? I/art: Not late-enabling -Xcheck:jni (already on) 07-02 13:55:11.367 24547-24547/? W/art: Unexpected CPU variant for X86 using defaults: x86 07-02 13:55:11.793 24547-24547/com.example.roomsarehere.foodishere W/System: ClassLoader referenced unknown path: /data/app/com.example.roomsarehere.foodishere-1/lib/x86 07-02 13:55:12.086 24547-24571/com.example.roomsarehere.foodishere I/DynamiteModule: Considering local module com.google.android.gms.flags:2 and remote module com.google.android.gms.flags:0 07-02 13:55:12.086 24547-24571/com.example.roomsarehere.foodishere I/DynamiteModule: Selected local version of com.google.android.gms.flags 07-02 13:55:12.131 24547-24571/com.example.roomsarehere.foodishere W/System: ClassLoader referenced unknown path: 07-02 13:55:12.136 24547-24571/com.example.roomsarehere.foodishere W/System: ClassLoader referenced unknown path: /system/priv- app/PrebuiltGmsCore/lib/x86 07-02 13:55:12.148 24547-24571/com.example.roomsarehere.foodishere D/ApplicationLoaders: ignored Vulkan layer search path /system/priv- app/PrebuiltGmsCore/lib/x86:/system/fake-libs:/system/priv- app/PrebuiltGmsCore/PrebuiltGmsCore.apk!/lib/x86:/system/lib:/vendor/lib for namespace 0xa787a090 07-02 13:55:12.194 24547-24547/com.example.roomsarehere.foodishere I/FA: App measurement is starting up, version: 11020 07-02 13:55:12.195 24547-24547/com.example.roomsarehere.foodishere I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE 07-02 13:55:12.222 24547-24571/com.example.roomsarehere.foodishere W/DynamiteModule: Local module descriptor class for com.google.android.gms.crash not found. 07-02 13:55:12.265 24547-24547/com.example.roomsarehere.foodishere V/FA: Collection enabled