Google Signin Not Working
I have an Android app for a customer, who wishes the users be able to log in via Google. So far, I have implemented the Google SignInButton, the GoogleSignInOptions, and the Google
Solution 1:
If you're using the SignIn API you should connect with the mode - GoogleApiClient.SIGN_IN_MODE_OPTIONAL:
googleApiClient.connect(GoogleApiClient.SIGN_IN_MODE_OPTIONAL)
Note that if permissions and scopes you have requested through the SignInOptions are not granted by the user the client will still connect successfuly.
Post a Comment for "Google Signin Not Working"