Publishing app to Apple Store

1

While sending the app to the Apple Store, I received the email:

  

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.

What exactly do I need to do?

Note: The app was made with Ionic and uses plugins for camera, firebase and clipboard

    
asked by anonymous 15.02.2017 / 18:23

1 answer

2

Check the email associated with the developer account that uploaded the app, the problem times and send an email warning.

  

This app attempts to access privacy-sensitive data without a use description. The app's Info.plist should contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data.

It is very self-explanatory, you need to add this entry NSPhotoLibraryUsageDescription to your plist. This is a text that appears in the alert that appears when you ask for some permission, in your case it is allowed to access the photo gallery.

<key>NSPhotoLibraryUsageDescription</key>
<string>Explica aqui o por que você esta pedindo essa permissão, e o que vai fazer com as fotos</string>
    
15.02.2017 / 19:19