cocoa pods报错The dependency `Reveal-iOS-SDK` is not used in any concrete target.
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cocoa pods报错The dependency `Reveal-iOS-SDK` is not used in any concrete target.相关的知识,希望对你有一定的参考价值。
Podfile错误写法,会报错The dependency `Reveal-ios-SDK` is not used in any concrete target.
platform:ios,‘7.0‘
pod ‘Reveal-iOS-SDK‘, :configurations => [‘Debug‘]
Podfile正确的写法:
platform:ios,‘7.0‘
target ‘WeiYiTest‘ do
pod ‘Reveal-iOS-SDK‘, :configurations => [‘Debug‘]
end
修改Podfile之后,Pod install就没有问题了,Pod update也没问题。
以上是关于cocoa pods报错The dependency `Reveal-iOS-SDK` is not used in any concrete target.的主要内容,如果未能解决你的问题,请参考以下文章