CocoaPods报错:The dependency `xxxxx` is not used in any concrete target
首先 CocoaPods 升级使用一下命令:
sudogem install cocoapods --pre
查看版本:
pod --version
这时执行:pod install 就出错了
解决方法:
platform:ios,'8.0'
use_frameworks!
target 'MyApp' do
pod'AFNetworking','~> 2.6'
pod'ORStackView','~> 3.0'
pod'SwiftyJSON','~> 2.3'
end