Since a recent upgrade - Xcode 9.4, WatchOS 4.3, iOS 11.4, the "Request Authorization at Launch Time" in my watchApp is no longer generating the request authorization pop-up on the phone.
My requests are appearing as if the user had provided authorization.
Yes, I have uninstalled the app and rebooted all devices many times to see if there was something left "hanging around".
In itself, that's not a problem, as I want my users to accept Notifications, they are intrinsic to my app, but the problem is that the Simulator is not requesting authorization and denying it in
center.requestAuthorization(options: [.alert, .sound]) { (granted, error) in
print("granted: \(granted), error: \(error!)")
}
}