码迷,mamicode.com
首页 > 移动开发 > 详细

发布报错:Error ITMS-90635 - Invalid Mach-O in bundle - submitting to App store

时间:2016-06-04 13:21:21      阅读:639      评论:0      收藏:0      [点我收藏+]

标签:

昨晚上传项目到AppStore,报了这个错,纳尼!?我早上还能成功上传的,当时判断是晚上网速问题导致的,早上再次试了下,还是一样报错,因为CocoPods导入的框架bitCode不一致导致的,解决方案是在Podfile后面加上

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings[‘ENABLE_BITCODE‘] = ‘NO‘
    end
  end
end

然后 pod install --no-repo-update

如果 pod install 报错,报错如下:

[!] Invalid `Podfile` file: syntax error, unexpected tCONSTANT, expecting end-of-input

...ig.build_settings[‘OTHER_CFLAGS‘] || [‘$(inherited)‘]

...                               ^. Updating CocoaPods might fix the issue.

 


那就需要先删除之前Podfile里面加的post_install do |installer|...... ,然后pod update, 在update之前记得给第三方框架指定一个版本(某些框架最新的可能在你项目无法使用,出现bug),升级后再次执行上面的步骤

发布报错:Error ITMS-90635 - Invalid Mach-O in bundle - submitting to App store

标签:

原文地址:http://www.cnblogs.com/lizzie8023/p/5558504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!