I am using Google Play Games Sign In implementation in my app but it fails with the error below:
java.lang.VerifyError: Verifier rejected class com.google.android.gms.auth.api.signin.GoogleSignInClient: int com.google.android.gms.auth.api.signin.GoogleSignInClient.zzabd() failed to verify: int com.google.android.gms.auth.api.signin.GoogleSignInClient.zzabd():
the error occurs in this part of the code:
public void performGooglePlayServicesConnection() {
GoogleSignIn.getClient(this,GoogleSignInOptions.DEFAULT_GAMES_SIGN_IN);
Intent intent = signInClient.getSignInIntent();
startActivityForResult(intent, RC_SIGN_IN_GOOGLE_PLAY_GAMES);
}
What could I be doing wrong?