ERROR ITMS-90474: "Invalid Bundle. iPad Multitasking support requires these orientations:

24,154

Solution 1

Edit your plist file from xcode and add this lines

<key>UIRequiresFullScreen</key>
    <true/>

Or You can do below

enter image description here

Solution 2

In Target of Project, tab General, Check at Deployment Info -> Requires full screen. and ReArchive Product. enter image description here

Solution 3

  • Xcode 7 N Xcode 8
  • Select Target of Project and Select General Tab -> Select Requires full screen

enter image description here

Solution 4

You need to add Portrait (top home button) on the supported interface orientation field of info.plist file in xcode

enter image description here

Share:
24,154
Pritish
Author by

Pritish

Updated on February 06, 2021

Comments

  • Pritish
    Pritish over 3 years

    I am developing an Universal app for Iphone and IPad using xamarin, and I am trying to deploy the app to app store using Xamarin Studio while deployment I am facing the error

    ERROR ITMS-90474: "Invalid Bundle. iPad Multitasking support requires these orientations: 'UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight'. Found 'UIInterfaceOrientationPortrait,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight' in bundle "bundle_Name"

    I have spend lots of time on google but I did not get any solution for this how to resolve it using Xamarin Studio.

  • Deepak G M
    Deepak G M over 7 years
    Solves the problem though its tough to explain how.
  • Pritish
    Pritish about 7 years
    @DeepakGM Yes agree
  • Santosh
    Santosh about 7 years
    Yes this worked, this answer here stackoverflow.com/a/32728607/1453691 has a screenshot which just takes a second to update and get rid of this error.
  • blueberry_chopsticks
    blueberry_chopsticks almost 6 years
    @DeepakGM isn't it obvious? The error is in relation to multitasking. If you declare that you require usage of the full screen, the iPad won't allow multitasking. This plist entry might as well say DisableMultitasking