Class Overview
Google Sign In specific status codes, for use in Status#getStatusCode()
.
In addition to codes defined in this class, you might also want to check:
Summary
[Expand]
Inherited Constants |
From class
com.google.android.gms.common.api.CommonStatusCodes
int |
API_NOT_CONNECTED |
The client attempted to call a method from an API that failed to connect. |
int |
CANCELED |
The result was canceled either due to client disconnect or cancel() . |
int |
DEVELOPER_ERROR |
The application is misconfigured. |
int |
ERROR |
The operation failed with no more detailed information. |
int |
INTERNAL_ERROR |
An internal error occurred. |
int |
INTERRUPTED |
A blocking call was interrupted while waiting and did not run to completion. |
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 |
RESOLUTION_REQUIRED |
Completing the operation requires some form of resolution. |
int |
SERVICE_DISABLED |
This constant is deprecated.
This case handled during connection, not during API requests. No results should
be returned with this status code.
|
int |
SERVICE_VERSION_UPDATE_REQUIRED |
This constant is deprecated.
This case handled during connection, not during API requests. No results should
be returned with this status code.
|
int |
SIGN_IN_REQUIRED |
The client attempted to connect to the service but the user is not signed in. |
int |
SUCCESS |
The operation was successful. |
int |
SUCCESS_CACHE |
The operation was successful, but was used the device's cache. |
int |
TIMEOUT |
Timed out while awaiting the result. |
|
Public Methods |
static
String
|
getStatusCodeString(int statusCode)
Returns an untranslated debug (not user-friendly) string based on the current status code.
|
[Expand]
Inherited Methods |
From class
com.google.android.gms.common.api.CommonStatusCodes
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Constants
public
static
final
int
SIGN_IN_CANCELLED
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.
Constant Value:
12501
(0x000030d5)
public
static
final
int
SIGN_IN_FAILED
The sign in attempt didn't succeed with the current account.
Unlike SIGN_IN_REQUIRED
. 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. Check
adb log to see details if any.
Constant Value:
12500
(0x000030d4)
Public Methods
public
static
String
getStatusCodeString
(int statusCode)
Returns an untranslated debug (not user-friendly) string based on the current status code.
Parameters |
statusCode |
int
|