Does the Google Fit API provide any flag to indicate the data was entered manually in the app.If yes, please suggest which needs to checked for that as the requirement is to process only the device collected data and not the manual entries in fitness apps.
Asked
Active
Viewed 322 times
3
-
Its old question. If you got any ans for this, please share – abdul khan Aug 10 '16 at 10:19
-
Any update on this? – Android Guy Jul 15 '19 at 07:41
1 Answers
-1
Closest you can get to achieve is this to filter out the results provided by the google fit sdk based on the original data source attributes. For example
dataset.dataPoints.forEach {
it.originalDataSource.appPackageName
it.originalDataSource.device
it.originalDataSource.name
}

Yahya Ali
- 7
- 6