Reputation: 2224
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.
Upvotes: 36
Views: 27274
Reputation: 2224
Edit your plist file from xcode and add this lines
<key>UIRequiresFullScreen</key>
<true/>
Or You can do below
Upvotes: 72
Reputation: 2090
You need to add Portrait (top home button) on the supported interface orientation field of info.plist file in xcode
Upvotes: 2
Reputation: 4911
Upvotes: 10
Reputation: 2036
In Target of Project, tab General, Check at Deployment Info -> Requires full screen. and ReArchive Product.
Upvotes: 42