IOS steps are not updating immediately . its taking 10 mins to update #132
Replies: 1 comment
-
You can check the Health app and see that data takes some time to update. And this package takes data from apple Health. If you need instant instant feedback, you can try to use PedometerApi, which is only supported in version 1.x. It should give instant feedback. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
please suggest any help below is my code
verison using [email protected]
const authorizationStatusios = await FitnessTrackerAPI.setupTracking([
HealthDataTypes.stepsCount,
]);
this.setState({ auth: authorizationStatusios });
// // Get steps total today
if (authorizationStatusios.authorized) {
const steps = await FitnessTrackerAPI.getStepsToday();
this.stepsCount = steps;
console.log("1121212121212121212121212121", steps);
}
Beta Was this translation helpful? Give feedback.
All reactions