首页 文章

ERROR ITMS-90474:“无效的捆绑包.iPad多任务支持需要这些方向:

提问于
浏览
7

我正在使用xamarin为Iphone和IPad开发一个通用应用程序,我正在尝试使用Xamarin Studio将应用程序部署到应用商店,同时部署我面临错误

ERROR ITMS-90474:“无效的捆绑包.iPad多任务支持需要这些方向:'UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight' . 在捆绑”bundle_Name“中找到'UIInterfaceOrientationPortrait,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight'

我花了很多时间在谷歌上,但我没有得到任何解决方案,如何使用Xamarin Studio解决它 .

3 回答

  • 14

    从xcode编辑plist文件并添加此行

    <key>UIRequiresFullScreen</key>
        <true/>
    
  • 1

    在项目目标中,选项卡常规,检查部署信息 - >需要全屏 . 和ReArchive产品 .
    enter image description here

  • 21
    • Xcode 7 N Xcode 8

    • 选择项目目标并选择常规选项卡 - >选择全屏需要


    enter image description here

相关问题