Got two keys and one entitlement missing after the upload:
The app uses IMedia library for VideoView to play videos from asset files. No camera or photo library access. I am planning to add these in the info.plist
<key>NSPhotoLibraryUsageDescription</key><string>This app does not require access to the photo library.</string></string>
<key>NSCameraUsageDescription</key><string>This app does not require access to the camera.</string>
Not sure what to do with the Push Notification. Don't know why it's there the app doesn't use it. I would like to change it in the app if possible rather than changing the provision profile file.
Can anyone help with this, please?
B4X:
Missing Info.plist keys:
NSPhotoLibraryUsageDescription key
NSCameraUsageDescription key
Missing Push Notification Entitlement- Your app appears to register with the Apple Push Notification service, but the app signature's entitlements do not include the "aps-environment" entitlement.
If your app uses the Apple Push Notification service, make sure your App ID is enabled for Push Notification in the Provisioning Portal, and resubmit after signing your app with a Distribution provisioning profile that includes the "aps-environment" entitlement.
The app uses IMedia library for VideoView to play videos from asset files. No camera or photo library access. I am planning to add these in the info.plist
<key>NSPhotoLibraryUsageDescription</key><string>This app does not require access to the photo library.</string></string>
<key>NSCameraUsageDescription</key><string>This app does not require access to the camera.</string>
Not sure what to do with the Push Notification. Don't know why it's there the app doesn't use it. I would like to change it in the app if possible rather than changing the provision profile file.
Can anyone help with this, please?