将应用程序提交到 iOS App Store 时,出现“无法解压缩应用程序”的情况。
我已成功向 App Store 提交“产品名称”。但是,在提交“Product Name Lite”时,我在应用程序加载器和内置 Xcode 上传器中不断收到错误“无法解压缩应用程序”。即使从产品名称中删除空格后,错误仍然存在;事实上,我认为应用程序或 plist 中不再有空格。
是什么可能导致这个“高度描述性”错误?
我正在使用 Xcode 3.2.5。
尝试清理、构建、构建和归档没有帮助。
I've successfully submitted "Product Name" to App Store. However, submitting "Product Name Lite", I keep getting the error "Unable to unzip application" in both Application Loader and built-in Xcode's uploader. Error persists even after eliminating spaces from the product name; in fact, I don't think there's whitespace anywhere in the app or the plist anymore.
What might be causing this "highly descriptive" error?
I'm using Xcode 3.2.5.
Attempting to clean, build, and build&archive did not help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您创建的产品没有任何无效的符号链接。
我有一个自定义的“运行脚本”构建阶段,在完整版本中,它创建了符号链接。在精简版中,一些文件被删除,导致符号链接无效。删除符号链接使验证阶段成功,该应用程序正在发送到 Apple 的服务器。
Make sure your created product does not have any invalid symlinks.
I had a custom "Run Script" build phase which, in full version, created symlinks. In the lite version, some files were deleted, resulting in invalid symlinks. Removing the symlinks allowed the validation phase to succeed, and the app is on its way to Apple's servers.