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
网友评论