com.neomades.googlesignin.GoogleSignInStatusCodes |
Google Sign In specific status codes.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | DEVELOPER_ERROR | The application is misconfigured. | |||||||||
int | INTERNAL_ERROR | An internal error occurred. | |||||||||
int | INVALID_ACCOUNT | The client attempted to connect to the service with an invalid account name specified. | |||||||||
int | NETWORK_ERROR | A network error occurred. | |||||||||
int | SIGN_IN_CANCELLED | The sign in was cancelled by the user. | |||||||||
int | SIGN_IN_CURRENTLY_IN_PROGRESS | A sign in process is currently in progress and the current one cannot continue. | |||||||||
int | SIGN_IN_FAILED | The sign in attempt didn't succeed with the current account. | |||||||||
int | SIGN_IN_INVALID_SCREEN | The screen handling the sign in process is not valid. | |||||||||
int | SIGN_IN_REQUIRED | The client attempted to connect to the service but the user is not signed in. |
The application is misconfigured. This error is not recoverable and will be treated as fatal. The developer should look at the logs after this to determine more actionable information.
An internal error occurred. Retrying should resolve the problem.
The client attempted to connect to the service with an invalid account name specified.
A network error occurred. Retrying should resolve the problem.
The sign in was cancelled by the user. i.e. user cancelled some of the sign in resolutions, e.g. account picking or OAuth consent.
A sign in process is currently in progress and the current one cannot continue. e.g. the user clicks the SignInButton multiple times and more than one sign in intent was launched.
The sign in attempt didn't succeed with the current account. when seeing this error code, there is nothing user can do to recover from the sign in failure. Switching to another account may or may not help.
The screen handling the sign in process is not valid. It may be not created or destroyed.
The client attempted to connect to the service but the user is not signed in.