bowser
bowser copied to clipboard
Crash when trying to access camera on iOS 10.1.1
Bowser crashes when trying to get access to the camera:
[access] This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data. Same for NSMicrophoneUsageDescription
Fixed by adding:
<key>NSCameraUsageDescription</key> <string>Please allow camera access</string> <key>NSMicrophoneUsageDescription</key> <string>Please allow microphone access</string>
to Bowser-Info.plist
Why not submit a PR?
Mostly because I don't feel comfortable enough with my English to construct a proper message explaining to the user how the app uses this data.