iOS上传——ERROR ITMS-90085: “No architectures in the binary. Lipo failed to detect any architectures in

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/IT_liuchengli/article/details/80655717

网上搜索的各种方式都没有解决我们的这个问题,特此一片博客。     

在iOS APP打包提交到APP store 的过程中,出现如下错误提示:

ERROR ITMS-90085: “No architectures in the binary. Lipo failed to detect any architectures in the bundle executable.”


原因背景:

   我们iOS开发是模块化开发,其中“开户功能”为一个项目模块。我们APP 整体打包上线提交没有问题。

但是当我们将整个APP 项目做成一个SDK(framework),嵌入到一个子公司的项目里,作为子公司app的一部分。然后子公司将APP(已嵌入我们app framework) 打包上线提交到APP store 出现了此问题。不管是通过Application Loader  还是Archive 后直接upload to App store的方式都会出现此问题。


原因:

我们app 中的开户模块生成了静态库famework,以及FMDB和FMDBManger等framework为静态库。

虽然自己APP 上线没有问题,但是打包成SDK(framework)集成到子公司上线却出现此问题



解决方式:

在打包给子公司的framework之前,先删除开户、FMDB和FMDBManger的静态framework



以上仅供参考。起码网上搜的这个原因的解决措施试了都是无效的,什么资源大了等等






猜你喜欢

转载自blog.csdn.net/IT_liuchengli/article/details/80655717