最近上傳項目遇到第三方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 是蘋果發(fā)布beta版,貌似項目打包上傳不了,升級Xcode到8.3.3就搞定了,項目成功上傳.