Updated to Xcode 8, I am using the camera to upload photos on my app, app crashes with following very known message:
This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's
Info.plist
must contain anNSCameraUsageDescription
key with a string value explaining to the user how the app uses this data.
Added the NSCameraUsageDescription
in my info.plist
, but I still get the crash no matter what. Cleaned the app, deleted the app, even restarted Xcode. Created a build and send it to testers, hoping it's just my phone, still crashed. Same message every time.
Did this happened to anyone? Even though they added the NSCameraUsageDescription
key does the app still crashes with the same message? Did anyone made it work? Am I missing anything?
<key>NSCameraUsageDescription</key>
<string>For user to take photos to upload on its profile.</string>
Thanks in advance