CocoaPods报错: The dependency `` is not used in any concrete target

因为最近换了新工作,公司电脑还没配置好,我暂时用自己的笔记本,在安装cocoaPods遇到了问题,现在解决了。

原文地址: CocoaPods报错:The dependency `AFNetworking ` is not used in any concrete target - Kamy Shi - 博客频道 - CSDN.NET

报这个错的原因是新版本的Pod需要添加一个"target",其实也就是要告诉它自己项目的名称。

我直接复制过来了

platform:ios,'8.0'

target'MyApp'do

pod'AFNetworking','~> 2.6'

pod'ORStackView','~> 3.0'

pod'SwiftyJSON','~> 2.3'

end

你可能感兴趣的:(CocoaPods报错: The dependency `` is not used in any concrete target)