Github user jcesarmobile commented on the issue:
https://github.com/apache/cordova-plugin-camera/pull/289
Thanks for you PR, but you are just duplicating
NSPhotoLibraryUsageDescription, the one needed for iOS 11 is
NSPhotoLibraryAddUsageDescription.
Anyway, we are removing the preferences like this from the plugin.xml as it
causes conflicts with other plugins requiring the same permissions.
The correct way of adding the permissions is using `edit-config` tag in the
config.xml like this
```
<edit-config target="NSPhotoLibraryAddUsageDescription" file="*-Info.plist"
mode="merge">
<string>need to save on the photo library for some reason</string>
</edit-config>
```
Can you close the PR?
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]