iOS Question iTunes Connect: Your app "***" (Apple ID: ****) has one or more issues

cloner7801

Active Member
Licensed User
Longtime User
I have upload my app to Appstore with hosted builder and with b4i but after a few minutes I receive an email and it was :

Dear developer,

We have discovered one or more issues with your recent delivery for "***". To process your delivery, the following issues must be corrected:

--Email--
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.

Though you are not required to fix the following issues, we wanted to make you aware of them:

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. Xcode 8 does not automatically copy the aps-environment entitlement from provisioning profiles at build time. This behavior is intentional. To use this entitlement, either enable Push Notifications in the project editor's Capabilities pane, or manually add the entitlement to your entitlements file. For more information, see https://developer.apple.com/library...s.html#//apple_ref/doc/uid/TP40008194-CH6-SW1.

Once the required corrections have been made, you can then redeliver the corrected binary.

Regards,

The App Store team
--Email--

the second one is for my b4i version and I will update my b4i to add entitlements.
But what is first one , I have this in my project attributes :
B4X:
    #PlistExtra:<key>NSCameraUsageDescription</key><string>Scan Card Or Barcode</string>
for using camera and I am using iBarcode
 

cloner7801

Active Member
Licensed User
Longtime User
I solved this problem with add this code to project attributes :
B4X:
    #PlistExtra:<key>NSPhotoLibraryUsageDescription</key><string>Scan Card Or Barcode</string>
But I think it's bug, because in iBarcode I don't use photo gallery
 
Upvote 0

tufanv

Expert
Licensed User
Longtime User
I solved this problem with add this code to project attributes :
B4X:
    #PlistExtra:<key>NSPhotoLibraryUsageDescription</key><string>Scan Card Or Barcode</string>
But I think it's bug, because in iBarcode I don't use photo gallery

it is a mail that has no importance. It is coming to everyone and there are many topics about this.
 
Upvote 0
Top