本文介绍了App Store提交错误无效的捆绑结构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在尝试提交以前成功提交的应用程序版本升级时,我从XCode 8.1收到以下错误:
I am receiving the following error from XCode 8.1 when trying to submit a previously successful submitted app version upgrade:
对于此构建的体系结构,我没有进行任何修改.有什么想法可以解决这个问题吗?
I did not modify anything in regards to architectures this build.Any idea where I should look to solve this problem?
推荐答案
当静态库文件被错误地复制到应用程序包中时,会发生此错误.
This error occurs when a static library file is mistakenly copied into the app bundle.
您应通过带有库的链接二进制文件构建阶段将libYourLibrary.a静态库链接.
You should link the libYourLibrary.a static library via a Link Binary with Libraries build phase.
应该不将其添加到目标的副本捆绑资源构建阶段.
It should NOT be added to the target's Copy Bundle Resources build phase.
这篇关于App Store提交错误无效的捆绑结构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!