2016-08-12 55 views

回答

0

最後我能如果您使用的CocoaPods在它use_frameworks關鍵字使用的CocoaPods以及支持的iOS 7

。它會迫使你將iOS的最低版本升級到iOS 8.0。因爲它使動態框架。

所以解決的辦法是對use_frameworks發表評論。

我現在使用的Podfile如下所示。

# Uncomment this line to define a global platform for your project 
# platform :ios, '9.0' 

target 'TheSinchSampleProject' do 
    # Comment this line if you're not using Swift and don't want to use dynamic frameworks 
    # use_frameworks! 

    # Pods for TheSinchSampleProject 
pod 'SinchRTC', '~> 3.9' 
end 
相關問題