安装新pod后的依赖关系分析错误

时间:2017-10-03 07:52:29

标签: ios swift

目前我使用的是Swift 3,安装新的Pod后我收到了这个错误

enter image description here

这是我的Pod

enter image description here

我甚至无法清理项目,我尝试了Pod更新,但错误仍然存​​在。我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:0)

必须添加行

platform :ios, '8.0'
use_frameworks!

target 'MyApp' do
    pod 'Bolts', '~> 1.8'
    pod 'Cosmos', '~> 12.0'
end

现在您可以在项目中安装依赖项:

$ pod install