這個(gè)問題是由iOS9新特性 bitcode導(dǎo)致的,接下來介紹下這個(gè)bitcode欠雌,百度來的。
在 App Distribution Guide – App Thinning (iOS, watchOS) 一節(jié)中疙筹,找到了下面這樣一個(gè)定義:
Bitcode is an intermediate representation of a compiled program. Apps you upload to iTunes Connect that contain bitcode will be compiled and linked on the App Store. Including bitcode will allow Apple to re-optimize your app binary in the future without the need to submit a new version of your app to the store.
說的是bitcode是被編譯程序的一種中間形式的代碼富俄。包含bitcode配置的程序?qū)?huì)在App store上被編譯和鏈接。bitcode允許蘋果在后期重新優(yōu)化我們程序的二進(jìn)制文件而咆,而不需要我們重新提交一個(gè)新的版本到App store上霍比。
繼續(xù)看,在 What’s New in Xcode-New Features in Xcode 7 中翘盖,還有一段如下的描述
Bitcode. When you archive for submission to the App Store, Xcode will compile your app into an intermediate representation. The App Store will then compile the bitcode down into the 64 or 32 bit executables as necessary.
當(dāng)我們提交程序到App store上時(shí)桂塞,Xcode會(huì)將程序編譯為一個(gè)中間表現(xiàn)形式(bitcode)。然后App store會(huì)再將這個(gè)botcode編譯為可執(zhí)行的64位或32位程序馍驯。
再看看這兩段描述都是放在App Thinning(App瘦身)一節(jié)中阁危,可以看出其與包的優(yōu)化有關(guān)了。喵大(@onevcat)在其博客 開發(fā)者所需要知道的 iOS 9 SDK 新特性 中也描述了iOS 9中蘋果在App瘦身中所做的一些改進(jìn)汰瘫,大家可以轉(zhuǎn)場到那去研讀一下狂打。
Bitcode配置
在上面的錯(cuò)誤提示中,提到了如何處理我們遇到的問題:
You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64
要么讓第三方庫支持混弥,要么關(guān)閉target的bitcode選項(xiàng)趴乡。
實(shí)際上在Xcode 7中,我們新建一個(gè)iOS程序時(shí)蝗拿,bitcode選項(xiàng)默認(rèn)是設(shè)置為YES的晾捏。我們可以在”Build Settings”->”Enable Bitcode”選項(xiàng)中看到這個(gè)設(shè)置。
如果我們開啟了bitcode哀托,在提交包時(shí)惦辛,下面這個(gè)界面也會(huì)有個(gè)bitcode選項(xiàng):
盜圖,我的應(yīng)用沒辦法在這個(gè)界面顯示bitcode仓手,因?yàn)橐蕾囉诘谌降膸炫制耄@個(gè)庫不支持bitcode,暫時(shí)只能設(shè)置ENABLE_BITCODE為NO嗽冒。
所以呀伙,如果我們的工程需要支持bitcode,則必要要求所有的引入的第三方庫都支持bitcode添坊。我就只能等著公司那些大哥大姐們啥時(shí)候提供一個(gè)新包給我們了剿另。