react-native-healthkit icon indicating copy to clipboard operation
react-native-healthkit copied to clipboard

HealthKit bindings for React Native with TypeScript

Results 18 react-native-healthkit issues
Sort by recently updated
recently updated
newest added

Thanks for the nice modern lib in TypeScript! How do you handle testing on the simulator, given that it has no health data? Would it make sense to have an...

enhancement
good first issue

Hello and thanks for great library! Is it possible to save device data values in `saveQuantitySample` method? I see we can query Health data by device and there we use...

enhancement

Hey, Have just run into an issue with using HealthKit.useSubscribeToChanges on a simulator. Its throws the below error when reloading the app during development. Do you know how we could...

I save workout sample like this: ``` let workoutOptions = { end: endDate, totals: { energyBurned: calories, activeEnergyBurned: calories, }, } await HealthKit.saveWorkoutSample(66, [], startDate, workoutOptions); ``` It saves workout...

Hi, I cloned this repo and built the app, but I'm not able to run it on simulator/iphone device and I'm getting this error. I tried adding babel with `npm...

https://github.com/KesoGizmoYoshi/rn-healthkit-test I am unable to get subscribeToChanges to work on a project running with RN New Architecture enabled. The same code works perfectly when running on a prebuilt version with...

Add AppleEffortScore as a unit. From what I can tell, to save workout effort, you need to use this for the unit: https://developer.apple.com/documentation/healthkit/hkunit/4338085-appleeffortscore Once this is added, you can now...

Hello, I am trying to use HKWorkoutSession to start an activity from my React Native app using this library. However, I am unclear on how to correctly initiate a workout...