Alamofire 与 iOS 11.0 兼容吗?
is Alamofire compatible for iOS 11.0?
我正在我的播客文件中使用它
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'MediaUploader' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for MediaUploader
pod 'SwiftyJSON', '~> 4.0'
pod 'Alamofire', '~> 5.2'
end
如果我在 here 中阅读了来自 Alamofire github 的文档。据说alamofire的要求是
- iOS 10.0+ / macOS 10.12+ / tvOS 10.0+ / watchOS 3.0+
- Xcode11+
- Swift 5.1+
但是当我像这样为 iOS 11.0 设置部署时
我有这样的错误
似乎最低要求是 iOS 12.0。我做错了什么吗?我可以将 Alamofire 用于 iOS 11.0 吗?
Alamofire 5 与 iOS11.
完美兼容
Cocoapods 没有考虑您项目的最低部署目标。 (显然 iOS 12 是默认值)
您只需在 Podfile
:
中取消对这一行的注释
# platform :ios, '9.0'
设置正确的最低部署版本:
platform :ios, '11.0'
又是运行pod install
。
我正在我的播客文件中使用它
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'MediaUploader' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for MediaUploader
pod 'SwiftyJSON', '~> 4.0'
pod 'Alamofire', '~> 5.2'
end
如果我在 here 中阅读了来自 Alamofire github 的文档。据说alamofire的要求是
- iOS 10.0+ / macOS 10.12+ / tvOS 10.0+ / watchOS 3.0+
- Xcode11+
- Swift 5.1+
但是当我像这样为 iOS 11.0 设置部署时
我有这样的错误
似乎最低要求是 iOS 12.0。我做错了什么吗?我可以将 Alamofire 用于 iOS 11.0 吗?
Alamofire 5 与 iOS11.
完美兼容Cocoapods 没有考虑您项目的最低部署目标。 (显然 iOS 12 是默认值)
您只需在 Podfile
:
# platform :ios, '9.0'
设置正确的最低部署版本:
platform :ios, '11.0'
又是运行pod install
。