YES! This same issue has driven be batty for months. I don't have a workaround unfortunately. Do you have a radar? I figured it would get resolved, but the issue still exists with Xcode 11.4 (11N111s).
Post
Replies
Boosts
Views
Activity
BTW, it works fine on the device.
I'm having a similar issue. Any resolution?
I believe the metrics that are enabled automatically depend on the activity type and location. At least that is the case for distance. I'm not sure what the HR issue is, assuming this is a watch workout. But maybe it's an apple health permission issue. Also, check if Power Saving mode is on. That limits heart rate monitoring. Open the watch app on your phone, tap on General and see if Workout Power Saving Mode is turned on. If so, turn it off.
These are the settings I use to for workout route maps:
lazy var locationManager: CLLocationManager = {
let _locationManager = CLLocationManager()
_locationManager.desiredAccuracy = kCLLocationAccuracyBest
_locationManager.activityType = .fitness
_locationManager.allowsBackgroundLocationUpdates = true
_locationManager.distanceFilter = kCLDistanceFilterNone
return _locationManager
}()
Any resolution? I'm getting this when building with Xcode 12.0.1.
Same problem with my app that was released last night (11/11).
Mine is fixed now after sending in a support ticket.
Answering my one question in case it helps someone. All the SF Symbols were referenced in Storyboards and were using a rendering mode as Automatic. Changing to Template seems to fix the issue. I'm not sure why this broke in iOS 13 when I moved to Xcode 12. BTW, the original message had a type x.mark.circle -> xmark.circle.
Same problem. I did get a build to upload if I hand deleted "com.apple.developer.healthkit.access", but I'm concerned about releasing that build if cause that had unintended consequences. Hopefully Apples fixes this issue soon.
I'm surprised Apple hasn't addressed this yet. Does anyone have an open ticket with them?
I just submitted a feedback for this and encourage others to do the same. Neither of my apps that use HealthKit can upload and it's been almost a week now.
I'm having the same issue. Works for others, but no me. Did you figure it out yet?
I am wondering the same.
I also also seeing similar issues. Should we not be calling authorizationStatus on the main thread?