Closed mathiasgithub closed 8 years ago
You have to use a real device, not the simulator for this :/
I did get this crash on both the simulator and testing on device
After install the app on a device, click "Stop the running scheme or application" in Xcode and then reopen your app. Unfortunately, you won't have access to the log messages...
Got it. Thanks a lot!
@mathiasgithub @delba Still crash, I am doubtful that it's the iOS bug.
@KittenYang is right. Its crashing on device, even stopping the app on Xcode and reopening.
This is what I get on device logs:
Quitting application (APP BUNDLE ID HERE) in response to privacy settings change
Its not a crash, but a SIGKILL
Its not "Permission" fault at all.
If I set a closure as below, then open the iOS Settings app and change the permission there, the app will crash
permission.request { status in switch status { case .Authorized: print("authorized") case .Denied: print("denied") case .Disabled: print("disabled") case .NotDetermined: print("not determined") } }