Can anyone here point me in the right direction if I want to continuously update the user's location in my WatchKit Extension? I know the interface exposed in CLLocationManager in watchOS 2 only allows for one-shot updates, so presumably I'll need to offload that to the iOS app. The Potloc sample code is a good starting point for doing that, but is there anywhere that explicitly spells out the requirements? Do I need to include the usage key in the info plist in both my extension and the iOS app? Do I need to set allowsBackgroundLocationUpdates to YES in the iOS app and include the background mode for the iOS app to get location updates to provide to my extension? (I assume yes to both, but just want to check)