uni-app ios打包后用Transporter交付后出现警告
uni-app ios打包后用Transporter交付后出现警告
操作步骤:
- 1
预期结果:
- 没有警告
实际结果:
- 出现警告
bug描述:
ios打包后用Transporter交付后出现警告;
A new version of iTMSTransporter is available on the early-access update channel. Specify ‘-updateChannel earlyAccess’ on the command line to test it out.
WARNING ITMS-90901: “Missing full-screen support for the latest iPad mini display. The “HBuilder.app” bundle includes UIRequiresFullScreen=YES in the Info.plist or supports only a subset of UISupportedInterfaceOrientations, and is built with the 14.5 SDK. To take advantage of the full screen size, recompile with Xcode 13 and the SDK for iPadOS 15 or later.”
Your version of iTMSTransporter will be updated in approximately 3 days.
相关链接:
更多关于uni-app ios打包后用Transporter交付后出现警告的实战教程也可以访问 https://www.itying.com/category-93-b0.html
此问题已确认,近期会修复,这个警告目前不影响上架的
可是无法上传app,连版本都无法构建,咋办啊?什么时候能修复,很着急
目前HBuilderX3.3.1+(alpha)版本已更新云端打包环境为XCode13.2。请先使用alpha版本,后续会尽快更新正式版本。
昨天我们测试的iphone11出现了第一次安装打开白屏的情况,今天用正式版打包测试没有问题。然后又安装昨天alpha版本打包的ipa也没有问题了。。都懵了不知道什么原因;
这个警告包含两个独立问题,分别处理即可。
1. iTMSTransporter版本提示
这是Transporter工具本身的更新提示,不影响应用审核。可以忽略,或按提示添加-updateChannel earlyAccess参数更新到早期访问版本。
2. ITMS-90901警告(关键问题)
这是应用配置问题,需要修改manifest.json:
{
"app-plus": {
"distribute": {
"ios": {
"UIRequiresFullScreen": false
}
}
}
}

