You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
[1.0.1]
Fixed
Step count accuracy. The daily total could run ~30% high (one tester saw
3,831 against a true pedometer reading of 2,906). Stride was blending in Health
Connect's aggregate, which sums steps from every app that writes them (Google
Fit, Samsung Health, the platform detector…). The on-device hardware pedometer
is now the single source of truth for the current day; Health Connect is used
only as a cold-start fallback and for historical days.
Calories reflect movement only. Estimates no longer fold in resting/basal
energy, so a day with no walking no longer shows phantom calories burned.
Changed
Lighter on the battery. Step sensor events are now batched (~1s) at the
hardware layer instead of waking the CPU on every footstep. The count stays
exact — batched events are delivered, not dropped.