Getting around Apple's silly rules for iOS 10
Fri Nov 4 11:43:36 2016
Having problems uploading to iTunes Connect after iOS 10?
Getting either or both of the following messages?
This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCalendarsUsageDescription key with a string value explaining to the user how the app uses this data.
This app attempts 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.
Then add this to your info.plist file and get around this frustrating menace with a middle finger.
<key>NSBluetoothPeripheralUsageDescription</key>
<string>App would like to use bluetooth.</string>
<key>NSCalendarsUsageDescription</key>
<string>App would like to create a calendar event.</string>
<key>NSCameraUsageDescription</key>
<string>App would like to use your camera.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>App would like to store a photo.</string>
Be done with it, get over it and grab a coffee. Good luck!
Tweet← back