Google Fit Api filter manually added activities

后端 未结 2 1474
遥遥无期
遥遥无期 2021-01-16 15:24

Google Fit allows users to add activities manually and programatically. Is it possible to filter out manually or programtically added activities from either the Android Api

相关标签:
2条回答
  • 2021-01-16 16:08

    I tried as suggested by Abdul Khan above but

    DataSource ds = DataPoint.getOriginalDataSource();
    String streamData = ds.getStreamIdentifier();
    
    /*I also tried but could not achieve what I wanted*/
    
    String packageName = ds.getAppPackageName();
    String streamIdentifier = ds.getStreamIdentifier();
    
    

    did not work at least for me while retrieving data. I ended up using readDailyTotalFromLocalDevice() as shown below in order to capture steps captured by device only.

    Fitness.HistoryApi.readDailyTotalFromLocalDevice(mApiClient, DataType.TYPE_STEP_COUNT_DELTA).await(1, TimeUnit.MINUTES)
    

    I cross checked the same with some of the apps that avoids manual entries in their app and the count provided by the function above is exactly the same.

    Note: If a user is having multiple devices and is using the app on all of them, readDailyTotalFromLocalDevice() will have different value for each and every device since the function is responsible for returning device specific data only.

    0 讨论(0)
  • 2021-01-16 16:16

    There is no proper way according to the documentation. But I found some solution to identify manual and automatic tracked activities in Android API.

    DataSource ds = DataPoint.getOriginalDataSource()
    String streamData = ds.getStreamIdentifier()
    

    If "streamData" contains "user_input", then it assumes the activities to be manual activities, either it contains "detailed" for actual sensor recorded activities.

    0 讨论(0)
提交回复
热议问题