Geofence specific status codes, for use in Status.getStatusCode()
| int | GEOFENCE_INSUFFICIENT_LOCATION_PERMISSION | The client doesn't have sufficient location permission to perform geofencing operations. |
| int | GEOFENCE_NOT_AVAILABLE | Geofence service is not available now. |
| int | GEOFENCE_REQUEST_TOO_FREQUENT | Your app has been adding Geofences too frequently. |
| int | GEOFENCE_TOO_MANY_GEOFENCES | Your app has registered more than 100 geofences. |
| int | GEOFENCE_TOO_MANY_PENDING_INTENTS | You have provided more than 5 different
PendingIntents to the
GeofencingApi.addGeofences(GoogleApiClient, GeofencingRequest,
PendingIntent) call. |
| static String |
getStatusCodeString(int statusCode)
Returns an untranslated debug (not user-friendly!) string based on the current
status code.
|
The client doesn't have sufficient location permission to perform geofencing operations.
Geofence service is not available now. Typically this is because the user turned off location access in settings > location access.
Your app has been adding Geofences too frequently.
Your app has registered more than 100 geofences. Remove unused ones before adding new geofences.
You have provided more than 5 different PendingIntents to the
GeofencingApi.addGeofences(GoogleApiClient, GeofencingRequest,
PendingIntent) call.
Returns an untranslated debug (not user-friendly!) string based on the current status code.