You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 12, 2019. It is now read-only.
I have cordova app with only this plugin using camera installed. It work's well on the device, but when I trying to submit build into AppStore I get this mail 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."
I know how to set plist key, but I don't want to confuse app users because my app didn't use photo library(I hope plugin didn't use it too). How to avoid this error without setting photo library usage description?
The text was updated successfully, but these errors were encountered:
I am currently running into the same issue. I have an entry in my plist file for NSCameraUsageDescription as instructed by this repo's README file. However, no where does this project say anything about the Photo Library, but the app store is requiring me to provide a NSPhotoLibraryUsageDescription. Anyone have any idea?
It seems that one of plugin dependencies provokes such behaviour. Only solutions I've found - provide any text to NSPhotoLibraryUsageDescription. App will never ask for it actually.
<config-file parent="NSPhotoLibraryUsageDescription" platform="ios" target="*-Info.plist">
<string>card.io-iOS-SDK requirement. Not really used</string>
</config-file>
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
General information
Issue description
I have cordova app with only this plugin using camera installed. It work's well on the device, but when I trying to submit build into AppStore I get this mail 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."
I know how to set plist key, but I don't want to confuse app users because my app didn't use photo library(I hope plugin didn't use it too). How to avoid this error without setting photo library usage description?
The text was updated successfully, but these errors were encountered: