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 surprised Apple hasn't addressed this yet. Does anyone have an open ticket with them?
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.
Post not yet marked as solved
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.
Post not yet marked as solved
Mine is fixed now after sending in a support ticket.
Post not yet marked as solved
Same problem with my app that was released last night (11/11).
Post not yet marked as solved
Any resolution? I'm getting this when building with Xcode 12.0.1.
Post not yet marked as solved
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.
Post not yet marked as solved
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
}()
Post not yet marked as solved
I'm having a similar issue. Any resolution?
Post not yet marked as solved
BTW, it works fine on the device.
Post not yet marked as solved
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 not yet marked as solved
Did you look at sessionReachabilityDidChange in WCSessionDelegate?
I'm having the same issue. However, it doesn't happen all the time. Typically if I bump up my build number then the install will work. Does anyone know there things stand with bug report 39488346 or can shed more light on the problem?
I have this need as well. Did anyone ever figure out how to scroll to a particular row in the list when the view first appears?