Visual Studio 应用程序加载器上的 Cordova 应用程序错误工具

Visual Studio Tools for Cordova App Error On Application Loader

我之前在 itunes connect 上上传了 ios 构建的用于 cordova 应用程序的 VS 工具以进行 Beta 测试。 ios9 发布后,现在上传时出现错误代码 ITMS-90474。 这是已知错误吗,因为 google 未返回任何相关结果?

工作需要全屏=是;

我认为这是自 iOS9 发布以来对应用程序的新要求。我的应用程序仅支持横向,在上传到 App Store 时出现该错误并被拒绝。我通过选择所有四个设备方向(目标 -> 常规)解决了这个问题,然后将波纹管代码添加到 ViewController:

override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
    return UIInterfaceOrientationMask.Landscape
}