Background Health Store Access for Lock Screen Widgets

It's fairly well know and stated that the Apple Health / HealthKit data store is unavailable when iPhone is locked.

Since Lock Screen Widgets were introduced there's been a feature parity mismatch with Apple's own Fitness app which is able to display updating Activity Rings on the Lock Screen. Third party apps cannot do this and have to rely unlocking their device to then trigger an update. This means they often display stale and wrong Health data.

With the release of iOS 18 beta, I see no changes to this... Is there anything I've missed?

Currently for requesting the Timeline Updates on my Widget I have to just keep requesting updates as often as possible and hope that each time the iPhone might be unlocked.... This is inefficient and a waste of device resources. Even a Widget timeline reload API that let the developer say "Only call update if iPhone unlocked" would be useful.

I've asked Apple Support this question about 1,5 year ago and what you would need to do is:

  1. Add the "Data Protection" capability to the main app (so not the Widget extension)
  2. Add “com.apple.developer.default-data-protection” entitlement key with value “NSFileProtectionComplete” to the widget target.

That way the widget will only request new timelines when the data is available (not protected) and you’ll no longer get errors.

If a reload of data would be requested when the device is locked, it will be executed when the device unlocks. Just like Apple's activity rings Lock Screen Widget.

Hope this helps and is what you're looking for!

@Thuri88 This looks like a fantastic suggestion, Thank You!

I'll go ahead and implement this and do some testing.

You mention Apple's activity rings Lock Screen widget implementing this.... I'm fairly sure I've observed it updating throughout the day without the iPhone being unlocked at all. There's also then the problem of StandBy mode and Widget on Mac which also can't update whilst your iPhone is locked.... and lots of my users would love to see their Health data in widgets on their Mac.

I've filed a feedback again on this: FB13879739

🙏🙏 A solution may be offered one day.

Background Health Store Access for Lock Screen Widgets
 
 
Q