react-native-healthkit
react-native-healthkit copied to clipboard
Couldn't save active energy
I save workout sample like this:
let workoutOptions = {
end: endDate,
totals: {
energyBurned: calories,
activeEnergyBurned: calories,
},
}
await HealthKit.saveWorkoutSample(66, [], startDate, workoutOptions);
It saves workout but not an active energy.
if calories are 100, apple health app shows related sample 100kcal total active energy, but when i click it, active energy page is empty.