Copy link to clipboard
Copied
Last night, after installing and building with Xcode 7.2 and a very recent AIR 20 SDK (206), I got the following errors attempting to submit a new build through Application Loader.
ERROR ITMS-90474: "Invalid Bundle. iPad Multitasking support requires these orientations: 'UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight'. Found 'UIInterfaceOrientationLandscapeRight,UIInterfaceOrientationLandscapeLeft' in bundle 'com.fatredcouch.brightideaspress.smarteze'."
ERROR ITMS-90475: "Invalid Bundle. iPad Multitasking support requires launch story board in bundle 'com.fatredcouch.brightideaspress.smarteze'."
The resulting API analysis file is too large. We were unable to validate your API usage prior to delivery. This is just an informational message.
These are the result of the app not having the UIRequiresFullScreen key set to true.
Modify your -app.xml file to have the following Info.plist key:
<iPhone> | |
| <InfoAdditions><![CDATA[ |
<key>UIRequiresFullScreen</key>
<true/>
]]></InfoAdditions>
Copy link to clipboard
Copied
Hi,
This has been mentioned in our release notes: http://fpdownload.macromedia.com/pub/labs/flashruntimes/shared/air20_flashplayer20_releasenotes.pdf
[iOS] Bundle errors appearing on uploading app on Appstore (4079233) Workaround: User needs to add following tag under InfoAdditions to allow the submission of application in Apple App store.
<key>UIRequiresFullScreen</key> <true/>
-Roshan
Adobe AIR