diff --git a/README.md b/README.md index 663de17990c9a1ad7cdef90384e85d6859e18f7c..d84dbd3874f6757cc6b75447439282c6512f8361 100644 --- a/README.md +++ b/README.md @@ -391,7 +391,12 @@ AppleHealthKit.initHealthKit(HKOPTIONS, (err, res) => { this._fetchStepCountData(); } ); - ... + + // other tasks to perform after HealthKit has been + // initialized (fetch relevant HealthKit data). + this._fetchStepCountData(); + this._fetchOtherRelevantHealthKitData(); + // ... }); ...