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
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.
The text was updated successfully, but these errors were encountered:
An App using LambdaKit will fail iTunesConnect validation, stating:
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.The text was updated successfully, but these errors were encountered: