The dependency `` is not used in any concrete target.--pod install时报错

source 'https://github.com/CocoaPods/Specs.git

pod 'DXPopover'

从Github上down的项目的podfile,pod install时出现“The dependency `DXPopover` is not used in any concrete target.”这样的错误。

这是pod版本更新之后的变化,podfile里必须明确指出使用第三方库的target,否则就会出现如题错误。

修改podfile如下:

source 'https://github.com/CocoaPods/Specs.git'

target "GitFeed" do

pod 'DXPopover'

end

然后pod install,这样问题就解决了。

你可能感兴趣的:(The dependency `` is not used in any concrete target.--pod install时报错)