您的位置:首页 > 移动开发 > IOS开发

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

2016-09-05 12:19 357 查看
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也没问题。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐