java.lang.Object | ||
↳ | com.google.android.gms.common.api.CommonStatusCodes | |
↳ | com.google.android.gms.fitness.FitnessStatusCodes |
Google Fit specific status codes, for use in
getStatusCode()
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | AGGREGATION_NOT_SUPPORTED | Status code denotes that a read request specified an un-supported data type as input for aggregation. | |||||||||
int | API_EXCEPTION | Status code denotes that an API call to Google backend failed, due to possible network issues. | |||||||||
int | APP_MISMATCH | Status code denotes that the app tried to insert data from the wrong app. | |||||||||
int | APP_NOT_FIT_ENABLED | Status code denotes that an app was not found in the list of connected apps in Google Fit. | |||||||||
int | CONFLICTING_DATA_TYPE | Status code denotes that the app attempted to insert a conflicting DataType, i.e. | |||||||||
int | DATASET_TIMESTAMP_INCONSISTENT_WITH_UPDATE_TIME_RANGE | Status code denotes that app attempted to update data with new dataSet's timestamp outside of update request time range. | |||||||||
int | DATA_SOURCE_NOT_FOUND | Status code denotes that there is no local datasource available to subscribe. | |||||||||
int | DATA_TYPE_NOT_ALLOWED_FOR_API | Status code denotes that the data type provided doesn't allow registering listener for data updates. | |||||||||
int | DATA_TYPE_NOT_FOUND | Status code denotes that the requested data type was not found. | |||||||||
int | DISABLED_BLUETOOTH | Status code denotes that Bluetooth is currently disabled. | |||||||||
int | EQUIVALENT_SESSION_ENDED | Status code denotes that a session could not be started because an equivalent session has already ended. | |||||||||
int | INCONSISTENT_DATA_TYPE | Status code denotes that the app attempted to insert a DataType whose name does not match the app's package name. | |||||||||
int | INCONSISTENT_PACKAGE_NAME | Status code denotes that app attempted to insert data for a DataSource that does not match the app's package name. | |||||||||
int | INVALID_DATA_POINT | Status code denotes that the app attempted to add invalid data. | |||||||||
int | INVALID_SESSION_TIMESTAMPS | Status code denotes that the app attempted to add a session with start time later than end time. | |||||||||
int | INVALID_TIMESTAMP | Status code denotes that the timestamp in the query is bad. | |||||||||
int | MISSING_BLE_PERMISSION |
This constant is deprecated.
operations that require BLUETOOTH_ADMIN will
throw a SecurityException if it's not granted.
|
|||||||||
int | NEEDS_OAUTH_PERMISSIONS | Status code denotes that the request is missing desired OAuth permissions. | |||||||||
int | REQUIRES_APP_WHITELISTING | Status code denotes that access to a requested data type was denied because the app has not been whitelisted by Google for access to that type. | |||||||||
int | SUCCESS_ALREADY_SUBSCRIBED | The subscribe request succeeded, but the subscription already existed, so it was a no-op. | |||||||||
int | SUCCESS_LISTENER_NOT_REGISTERED_FOR_FITNESS_DATA_UPDATES | The PendingIntent sent by the client, to unregister itself from listening
to changes to fitness store, was not found in registered listeners listening to fitness store
updates. |
|||||||||
int | SUCCESS_NO_CLAIMED_DEVICE | The unclaim request succeeded, but no matching claimed device was found. | |||||||||
int | SUCCESS_NO_DATA_SOURCES | The subscribe request succeeded, but no data sources are currently available that match it. | |||||||||
int | TRANSIENT_ERROR | Status code denotes that there was a transient error accessing Google Fit services. | |||||||||
int | UNKNOWN_AUTH_ERROR | Status code denotes that an unknown error occurred while trying to obtain an OAuth token. | |||||||||
int | UNSUPPORTED_ACCOUNT | Status code denotes that the account is not supported. | |||||||||
int | UNSUPPORTED_PLATFORM | Status code denotes that the operation is not supported by Google Fit. |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Status code denotes that a read request specified an un-supported data type as input for aggregation.
Status code denotes that an API call to Google backend failed, due to possible network issues.
Status code denotes that the app tried to insert data from the wrong app.
Status code denotes that an app was not found in the list of connected apps in Google Fit. Signifies that either access to the app was already revoked, or the app is not registered on the developer's console.
Status code denotes that the app attempted to insert a conflicting DataType, i.e. there is an existing DataType with the same name and different fields.
Status code denotes that app attempted to update data with new dataSet's timestamp outside of update request time range.
Status code denotes that there is no local datasource available to subscribe.
Status code denotes that the data type provided doesn't allow registering listener for data updates.
Status code denotes that the requested data type was not found.
Status code denotes that Bluetooth is currently disabled.
Status code denotes that a session could not be started because an equivalent session has already ended.
Status code denotes that the app attempted to insert a DataType whose name does not match the app's package name.
Status code denotes that app attempted to insert data for a DataSource that does not match the app's package name.
Status code denotes that the app attempted to add invalid data.
Status code denotes that the app attempted to add a session with start time later than end time.
Status code denotes that the timestamp in the query is bad. This may be due to a bad time specified in the request or bad system time.
This constant is deprecated.
operations that require BLUETOOTH_ADMIN
will
throw a SecurityException
if it's not granted.
Status code denotes that the app is missing the required Bluetooth permissions.
Status code denotes that the request is missing desired OAuth permissions.
If an app does not have the required OAuth access for a specific API request, the request will fail with this status code. When this occurs, apps can use the pending intent inside the status object to request the necessary access before retrying the request.
Sample usage when access is missing for a request:
PendingResult<Result> pendingResult = FitnessApi.readData(fitnessRequest); Result result = pendingResult.await(3L, TimeUnit.SECONDS); Status = result.getStatus(); if (!status.isSuccess()) { if (status.getStatusCode() == FitnessStatusCodes.NEEDS_OAUTH_PERMISSIONS) { status.startResolutionForResult( myActivity, MY_ACTIVITYS_AUTH_REQUEST_CODE); } }
Status code denotes that access to a requested data type was denied because the app has not been whitelisted by Google for access to that type.
The subscribe request succeeded, but the subscription already existed, so it was a no-op.
The PendingIntent
sent by the client, to unregister itself from listening
to changes to fitness store, was not found in registered listeners listening to fitness store
updates.
The unclaim request succeeded, but no matching claimed device was found. No changes were made.
The subscribe request succeeded, but no data sources are currently available that match it. Recording of data will start when data sources become available.
Status code denotes that there was a transient error accessing Google Fit services. Clients may retry.
Status code denotes that an unknown error occurred while trying to obtain an OAuth token.
Status code denotes that the account is not supported.
Status code denotes that the operation is not supported by Google Fit.