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
GEOFENCE_NOT_AVAILABLE
Geofence service is not available now. Typically this is because the user turned off location
access in settings > location access.
Constant Value:
1000
(0x000003e8)
public
static
final
int
GEOFENCE_TOO_MANY_GEOFENCES
Your app has registered more than 100 geofences. Remove unused ones before adding new
geofences.
Constant Value:
1001
(0x000003e9)
public
static
final
int
GEOFENCE_TOO_MANY_PENDING_INTENTS
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
|