TitleHow do you deal with the system rejections on iOS review submission?2022-07-15 15:07:41
Writer
Reason for System Rejection Cause and How to deal with
ITMS-90206: Invalid Bundle - The bundle at '프로젝트명.app/Frameworks/UnityFramework.framework' contains disallowed file 'Frameworks'.
ITMS-90098: This bundle is invalid - The key UIRequiredDeviceCapabilities contains value 'arm7' which is incompatible with the MinimumOSVersion value of '10.0'.
  • Cause
    • The differences of the UIRequiredDeviceCapabilities in between the info.plist files of the pre-order ent build and the submission build
      • Pre-order ent = arm64
      • Submission build = arm64 + arm7
    • When included arkit which is not supported in iOS 10 that is the minimum supported version of pre-order
  • How to deal with
    • arm7 is unavailable and armv7 is not supported for the pre-order build, therefore, use only arm64 to match with the pre-order build.
ITMS-90108: This bundle is invalid - The key UIRequiredDeviceCapabilities in the Info.plist may not contain values that would prevent this application from running on any device. Refer to 'Understanding the UIRequiredDeviceCapabilities key' at https://developer.apple.com/library/ios/#qa/qa1397/_index.html for more information
ITMS-90109: This bundle is invalid - The key UIRequiredDeviceCapabilities in the Info.plist may not contain values that would prevent this application from running on devices that were supported by previous versions. Refer to QA1623 for additional information: https://developer.apple.com/library/ios/#qa/qa1623/_index.html 
ITMS-90426, 90428: : Invalid Swift Support
ITMS-90078: 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 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/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/HandlingRemoteNotifications.html#//apple_ref/doc/uid/TP40008194-CH6-SW1.