在 Xcode 内上传应用程序时,iTunes Store 操作失败 描述长度太长
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/47122528/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
iTunes Store Operation Failed When Uploading App Inside Xcode Description Length Too Long
提问by Hyman Robson
So when I go into Xcode -> Archive -> Upload To App Store I get this:
所以当我进入 Xcode -> Archive -> Upload To App Store 我得到这个:
I have no idea how the description length is so long. Inside the Itunes Connect portal, my release descriptions are very short.
我不知道描述长度怎么这么长。在 Itunes Connect 门户中,我的版本说明非常简短。
How do I change this inside Xcode?
如何在 Xcode 中更改此设置?
I've tried using the Application Loader and other versions of Xcode but get the same error.
我曾尝试使用 Application Loader 和其他版本的 Xcode,但遇到相同的错误。
Any suggestions appreciated.
任何建议表示赞赏。
采纳答案by MayankSengar
Your iTunes store operation failed due to two requirements not fulfilled.
由于两个要求未满足,您的 iTunes 商店操作失败。
You have enable the iPad multitasking, which requires the all orientations but you have enable only portrait mode, which is wrong. You have to enable all the orientations which is required and also mentioned in the error.
您已启用 iPad 多任务处理,这需要所有方向,但您仅启用了纵向模式,这是错误的。您必须启用所有必需且在错误中提到的方向。
In your bundle "com.buildregs.Build-Regs" has only configured the portrait mode, you have to configure all the orientation into the this bundle id.
在您的包中“com.buildregs.Build-Regs”仅配置了纵向模式,您必须将所有方向配置到此包 ID 中。
Also Update your Xcode the latest Appstore version. Do not use a beta version of Xcode and that will solve your second error.
同时将您的 Xcode 更新为最新的 Appstore 版本。不要使用 Xcode 的 beta 版本,这将解决您的第二个错误。
回答by Gultekin
When I have run into this stockoverflow page, I have tried all the steps but could not succeeded. My app was build with ionicframework and I was getting 2 errors. The first one was "iTUNES Store Operation Failed: description length" error and another one was complaining about image path is not wring for icon.png. After fixing image url error, this error didn't appear anymore.
当我遇到这个 stockoverflow 页面时,我已经尝试了所有步骤,但都没有成功。我的应用程序是用 ionicframework 构建的,我遇到了 2 个错误。第一个是“iTUNES Store Operation Failed: description length”错误,另一个是抱怨 icon.png 的图像路径不正确。修复图像 url 错误后,此错误不再出现。
I realized that I was using image.xcassets but I left icon bundle in the plist file, and this was, somehow, causing the description error as well. I simply removed icon.png line from plist file and I could upload binaries to ap store
我意识到我正在使用 image.xcassets 但我在 plist 文件中留下了图标包,这不知何故也导致了描述错误。我只是从 plist 文件中删除了 icon.png 行,我可以将二进制文件上传到 ap 商店
回答by Khalid Musa Sagar
I got this top two errors a little earlier and after two hours searching got that
我早些时候得到了前两个错误,经过两个小时的搜索得到了那个
Unity iOS build setting -> Resolution and Presentation ->
Unity iOS 构建设置 -> 分辨率和展示 ->
Multitasking Support (Requires Fullscreen: option was Inactive).
多任务支持(需要全屏:选项是Inactive)。
After Activethis option all error gone.
后主动此选项了所有的错误。