上传App StoreError ITMS-90635 - Invalid Mach-O in bundle

苹果6月份新的审核规则,因为CocoPods导入的框架bitCode不一致导致的,解决方案是在Podfile后面加上如下代码然后pod update,在重新上传就可以了。

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

你可能感兴趣的:(上传App StoreError ITMS-90635 - Invalid Mach-O in bundle)