2017-07-27 75 views
0

我正在爲使用unity構建IOS的遊戲,但構建崩潰。我使用統一版本5.5和Xcode中8.2.1Xcode 8.2.1,具有crash dyld的IOS 8模擬器:找不到符號:_ASCIIEncoding_GetByteCount_m1396020051

使dyld:找不到符號:_ASCIIEncoding_GetByteCount_m1396020051 引用自:在/ var /瓶/包/應用/ 預計在:在/ var平面命名空間 /集裝箱/包/應用/

這是我莢文件:

source 'https://github.com/CocoaPods/Specs.git' 
install! 'cocoapods', :integrate_targets => false 
platform :ios, '8.0' 
target 'Unity-iPhone' do 
pod 'Google-Mobile-Ads-SDK', '~> 7.13' 
end 
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 

請幫我在這。

回答

0

該問題是由於缺少框架。請檢查基礎框架是否添加。

Make sure you have Foundation framework to your project. (Remove and add it again to be sure). 

還清理深層清理代碼並再次運行。

shift + cmd + K 
+0

我已經做了 – Banu

+0

乾淨,然後再試一次。 shift + cmd + K – Nirmalsinh

+0

這也試圖不工作,同時建立其顯示黑屏。 – Banu

相關問題