LambdaKit
LambdaKit copied to clipboard
Linking to UIImagePickerController triggers validation warnings
An App using LambdaKit will fail iTunesConnect validation, stating:
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.
Apple detects usage of UIImagePicker API (from Lambda Kit), even if the app is not using it. One fix would be to change the plist, but a cleaner solution would be to componentize LambdaKit with subpods so a developer can cherry pick which one he includes ? Another (simpler) solution to componentize: module maps ! So we can do import LambdaKit.Controls
for ex.
Same issue happens in other Pods. Linking https://github.com/delba/Permission/issues/57 , which has a solution