I'm using the Cordova Camera and when I try upload to itunes connect I get this message from Apple:
Missing Info.plist key - This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data.
Please let me know what to do?
Solved this adding the following to intelxdk.config.additions
<!-- +iOS --><config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription" overwrite="true">
<array>
<string>We need access to your photos for whatever reason</string>
</array>
</config-file>