I am getting error of google Plus Login Failed error code 17 while using the release apk. In debug apk it is working. not able to figure it out the proper error and solution.Even error message is null.
@Override
public void onConnectionFailed(ConnectionResult result) {
Log.e(TAG, "Google plus login failed : onConnectionFailed");
if (!mIntentInProgress && result.hasResolution()) {
try {
mIntentInProgress = true;
mActivity.startIntentSenderForResult(result.getResolution()
.getIntentSender(), AUTH_CODE_REQUEST_CODE, null, 0, 0, 0);
} catch (SendIntentException e) {
mIntentInProgress = false;
mGoogleApiClient.connect();
}
} else {
if (mGoogleLoginListener != null) // it goes here
mGoogleLoginListener.googlePlusLoginFailed(result.getErrorCode());
}
}