博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Xcode 7在支持ipad的设备中需要支持分屏!
阅读量:7282 次
发布时间:2019-06-30

本文共 1882 字,大约阅读时间需要 6 分钟。

 

在更新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>

转载于:https://www.cnblogs.com/Jim-william/p/4956611.html

你可能感兴趣的文章
2.2. mysqldump - a database backup program
查看>>
01-老马jQuery教程-jQuery入口函数及选择器
查看>>
分割工具——按字段属性
查看>>
c++ 11 移动语义、std::move 左值、右值、将亡值、纯右值、右值引用
查看>>
第 2 章 Spring Boot
查看>>
搭建Java环境JDK,和运行环境JRE
查看>>
Thinking in Java 4 : 一切都是对象
查看>>
iOS - UICollectionViewController
查看>>
Facebook 宕机事故系服务器配置问题导致
查看>>
【RAC】11g R2 RAC新特性之Highly Available IP(HAIP)
查看>>
Mysql 5.7 Gtid内部学习(三) Gtid和Last_commt/sequnce_number的生成时机
查看>>
【MySQL】漫谈死锁
查看>>
wait for stopper event to be increased
查看>>
上海往事之找Free机会一周
查看>>
[20160302]关于FULL_HASH_VALUE.txt
查看>>
奇葩念头:微信能取代WP应用吗
查看>>
Cordova插件,自动根据包名替换R资源描述
查看>>
Python探索记(12)——元组Tuple
查看>>
wcf系列学习5天速成——第五天 服务托管
查看>>
对于超大型SQL SERVER数据库执行DBCC操作
查看>>