美文网首页
iOS上传项目到iTunes Connect framework

iOS上传项目到iTunes Connect framework

作者: shensir_aye | 来源:发表于2017-08-10 19:30 被阅读116次

    最近上传项目遇到第三方framework遇到不支持x86_64的问题:

    找了一下资料 把不支持x86_64的剔除掉就行,具体操作:

    step1: 打开终端 cd 到 Hyphenate.framework 路径下

    step2: 输入以下命令

      lipo Hyphenate.framework/Hyphenate -thin armv7 -output Hyphenate_armv7

      lipo Hyphenate.framework/Hyphenate -thin arm64 -output Hyphenate_arm64

      lipo -create Hyphenate_armv7 Hyphenate_arm64 -output Hyphenate

      mv Hyphenate Hyphenate.framework/

    同样的 Mapbox.framework 里不支持x86_64 操作同上

    最后还有个ERROR ITMS-90125:"The binary is invalid"...... 的报错

    我看了下Xcode的版本8.3

    原来Xcode8.3 是苹果发布beta版,貌似项目打包上传不了,升级Xcode到8.3.3就搞定了,项目成功上传.

    相关文章

      网友评论

          本文标题:iOS上传项目到iTunes Connect framework

          本文链接:https://www.haomeiwen.com/subject/facbqttx.html