Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 944
Pritish Avatar asked Sep 02 '16 10:09

Pritish


4 Answers

Edit your plist file from xcode and add this lines

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

Or You can do below

enter image description here

like image 52
Pritish Avatar answered Nov 20 '22 00:11

Pritish


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

like image 28
Linh Nguyen Avatar answered Nov 20 '22 00:11

Linh Nguyen


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

enter image description here

like image 10
Vishal Vaghasiya Avatar answered Nov 20 '22 02:11

Vishal Vaghasiya


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

enter image description here

like image 1
Moh .S Avatar answered Nov 20 '22 01:11

Moh .S