Pod问题:The dependency 'xxx' is not used in any concrete target

更新Mac系统后,使用pod出现了如下问题:

The dependency 'XXX' is not used in any concrete target.

最后在cocoapods官网 找到解决方法。

  • 解决方法:
    将Podfile中的代码改成如下形式即可。
    以下代码来自官网:
platform :ios, '8.0'
use_frameworks!
target 'MyApp' do
  pod 'AFNetworking', '~> 2.6'
  pod 'ORStackView', '~> 3.0'
  pod 'SwiftyJSON', '~> 2.3'
end
  • 备注
    另外,可以通过pod init命令在工程文件夹下生成一个默认的Podfile文件。

你可能感兴趣的:(Pod问题:The dependency 'xxx' is not used in any concrete target)