美文网首页
CocoaPods报错:The dependency `` is

CocoaPods报错:The dependency `` is

作者: 家丁三锅 | 来源:发表于2016-07-05 12:41 被阅读37次

报错截图:

报错原因:

   podfile升级之后到最新版本,pods里的内容必须明确指出所用第三方库的target,否则会出现The dependency `` is not used in any concrete target这样的错误。

解决方法:

  在Podfile里面增加以下语句:

target "你的项目名" do

pod ‘*************'

end

再使用 pod install,成功解决:

相关文章

网友评论

      本文标题:CocoaPods报错:The dependency `` is

      本文链接:https://www.haomeiwen.com/subject/sdphjttx.html