标签:
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.
标签:
原文地址:http://www.cnblogs.com/wobuyayi/p/5841837.html