By Google, I got this code to insert DataType.TYPE_STEP_COUNT_DELTA
. but how to insert TYPE_HEIGHT AND TYPE_WEIGHT
using Android
com.google.android.gms.common.api.Status insertStatus =
Fitness.HistoryApi.insertData(mClient, dataSet)
.await(1, TimeUnit.MINUTES);
To insert data, you need to create a new DataSet object for both height and weight.
I have created a method in order to get a DataSet object with the necessary parameters for a request.
Then, you need to do something like this:
It is very helpful if you read Google Fit doc. There, you can read more information about data types
I hope this helps ^^