回答
最近發現這似乎暗示你需要爲每個框架啓用位碼。
"Xcode 7 has a ENABLE_BITCODE option to embed bitcode in apps, app extensions, and frameworks. The option is turned on by default for iOS and is mandatory for watchOS projects submitted to the store. When bitcode is enabled for a target, all the objects, static libraries and user frameworks used when linking that target must contain bitcode. Otherwise, an error or a warning will be issued by the linker. (Note: missing bitcode is currently a warning for iOS, but it will become an error in an upcoming beta release of Xcode 7.) ENABLE_BITCODE should be consistently turned on for all the targets. If you use a library or framework provided by a third party, please contact the vendor for an updated version which contains bitcode." Dear God, do we need to wait for all libs to update? :S
源(link)
如果你不打算支持蘋果觀看,你可以通過搜索項目和目標位碼關閉該選項。選項改變爲
號我試圖運行AudioModem代碼(設定爲目標的iOS 5.1)在iOS 9.1設備上。對我來說,只需changing the deployment target的應用程序9.0(令人難以置信的!)工作(不知何故沒有引入其他錯誤?!)。
OP明確提出解決方案而不更改部署目標。 – lupz
- 1. 無法獲得-fembed-位碼工作
- 2. 回聲是不是打印之前標題位置在PHP 5.6
- 3. 在安裝R3之前是否需要安裝Windows Embedded CE 6.0?
- 4. 代碼是不能工作,因爲它是之前(硒JAVA)
- 5. didReceiveResponse是否保證位於connectionDidFinishLoading之前?
- 6. Node.js的代碼排序 - 這可能是之前監聽到位
- 7. 在android 6.0中找不到sdcard文件(不是硬代碼)
- 8. 佔位符「搜索...」不是當我運行當前的代碼
- 9. ::添加內容之前,而不是之前的元素
- 10. 在Selenium中返回源代碼之前等待(不是超時())
- 11. 的WebGL:INVALID_OPERATION:uniform1i:位置不是當前程序
- 12. div前往div而不是之後
- 13. 而不是刪除之前的觸發
- 14. :nth-child(n):之前是不工作?
- 15. promise&mocha:done()之前還是不行?
- 16. ANTLR - 嵌入Java代碼,評估之前還是之後?
- 17. resharper 6.0選項卡而不是空格
- 18. 旋轉的表觀不是在IOS 6.0
- 19. 如何使用::僞代碼之後的Font Awesome而不是::之前的僞
- 20. 您是否在編碼之前用僞代碼寫出算法?
- 21. 當前位置是空
- 22. 在插入/更新之前驗證數據還是不是?
- 23. 在添加新行之前驗證行是不是空的
- 24. Const在CGFloat之前還是之後?
- 25. FileSystemWatcher.Filter - 緩衝區之前還是之後?
- 26. 是:之前:兄弟姐妹之後?
- 27. 調試信息:之前還是之後?
- 28. 使用之前是否有缺點:之前&:在CSS之後?
- 29. 什麼是VB tpkeys 6.0
- 30. Android:如何檢測用戶是否運行6.0.1,而不是6.0
我建議你考慮刪除對iOS 5的支持。現在大多數庫都將用bitcode構建。禁用位代碼意味着您無法支持Watch OS –
@Gautam:Watch OS需要單獨爲Watch OS構建的獨立庫。這意味着一個單獨的構建目標,因此不需要在針對Watch OS的iOS目標中保留位代碼。不過,當爲iOS構建應用程序時,當然還有其他一些原因。 – Kaiserludi