zoukankan      html  css  js  c++  java
  • Xcode 7在支持ipad的设备中需要支持分屏!

    http://sandy.int.ru/xcode/xcode7zaizhichiipaddeshebeizhongyaozhichifenping.html

    在更新APP的时候发现ERROR ITMS-90474,ERROR ITMS-90475等错误。看了一下错误日志发现提示不支持分屏

    错误信息:

    Since iOS9 and Xcode 7 final were released, apps built with UnrealEngine 4.9.1 cannot be uploaded to iTunesConnect or TestFlight.

    The first error you’ll encounter is:

    Code:
    1 package(s) were not uploaded because they had problems:
    /var/folders/5h/w09yr4wx40g2fgnj1cnqxypc0000gn/T/479C7B49-0CB9-4659-A284-5FFD685AF90A/1021672195.itmsp – Error Messages:
    ERROR ITMS-90474: “Invalid Bundle. iPad Multitasking support requires these orientations: ‘UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight’. Found ‘UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight’ in bundle ‘com.martiancraft.columbus’.”
    ERROR ITMS-90475: “Invalid Bundle. iPad Multitasking support requires launch story board in bundle ‘com.martiancraft.columbus’.”
    ERROR ITMS-90339: “This bundle is invalid. The Info.plist contains an invalid key ‘CFBundleResourceSpecification’ in bundle NinjaUE4 [NinjaUE4.app]”
    This one is relatively easy to work around. If you add the following to the Additional Plist Items in your Project Settings under iOS:

    Code:
    <key>UIRequiresFullScreen</key> <string>YES</string>
    , it will prevent the server-side checks from doing the startup storyboard and orientation checks, though it will prevent your app from working in the new split screen mode. For games, I doubt that’ll be much of an issue, though.

    Unfortunately, getting past that check isn’t the end of it. You’ll still continue to get

    Code:
    ERROR ITMS-90339: “This bundle is invalid. The Info.plist contains an invalid key ‘CFBundleResourceSpecification’ in bundle NinjaUE4 [NinjaUE4.app]

    解决办法:

    找到Info.plist,并非测试下的Info.plist。

    加入下面的KEY:

    <key>UIRequiresFullScreen</key>

    <string>YES</string>

    1

  • 相关阅读:
    表格编辑、拖拽、复制、粘贴、剪贴、删除、清空
    winform程序只能打开一个进程
    winform更新程序代码
    winform无标题窗体点击任务栏最小化、还原功能
    winform闪屏问题解决方案
    jQuery 常用方法总结
    理解JSON:3分钟课程
    打造高效的技术团队,我会关注的7个点
    nginx实现网站负载均衡(windows+IIS负载实测)
    怎么用批处理修改host文件
  • 原文地址:https://www.cnblogs.com/Jim-william/p/4956611.html
Copyright © 2011-2022 走看看