解决pod 引入Kingfisher 执行 `pod i

2019-12-26  本文已影响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

上一篇 下一篇

猜你喜欢

热点阅读