代码改变世界

cocoa pods报错The dependency `Reveal-iOS-SDK` is not used in any concrete target.

2016-09-05 12:19  Hi,David  阅读(424)  评论(0)    收藏  举报

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也没问题。