美文网首页
解决pod 引入Kingfisher 执行 `pod i

解决pod 引入Kingfisher 执行 `pod i

作者: 红色小星 | 来源:发表于2019-12-26 22:19 被阅读0次

pod 引入Kingfisher 执行 pod install 时报错

platform :ios,'8.0'

target ‘CXWageCalculatorProject' do
pod 'PKHUD', '~> 5.0'
pod 'Google-Mobile-Ads-SDK'
pod 'SnapKit'
pod 'Alamofire'
pod 'SwiftDate', '~> 6.1.0'
pod 'SwiftyJSON', '~> 4.0'
pod 'Kingfisher', '~> 5.10.1'
end

Specs satisfying the Kingfisher (~> 5.10.1) dependency were found, but they required a higher minimum deployment target.

解决办法:

platform :ios,'8.0' 修改为 platform :ios,'10.0'

如下

platform :ios,'10.0'
target ‘CXWageCalculatorProject' do
pod 'PKHUD', '~> 5.0'
pod 'Google-Mobile-Ads-SDK'
pod 'SnapKit'
pod 'Alamofire'
pod 'SwiftDate', '~> 6.1.0'
pod 'SwiftyJSON', '~> 4.0'
pod 'Kingfisher', '~> 5.10.1'
end

相关文章

网友评论

      本文标题:解决pod 引入Kingfisher 执行 `pod i

      本文链接:https://www.haomeiwen.com/subject/ertroctx.html