您好我有以下pod文件:
pod "AFNetworking", "~> 2.0"
pod 'RestKit', '~> 0.20.0'
尝试安装pod时出现错误:
[!] Unable to satisfy the following requirements:
- `AFNetworking (~> 2.0)` required by `Podfile`
- `AFNetworking (= 1.1.0)` required by `RestKit/Network (0.20.0)`
- `RestKit/Network (= 0.20.0)` required by `RestKit/Core (0.20.0)`
RestKit需要AFNetworking的第1.1.0版,但我想在我的项目中使用2.0如何启用它们?
我在文档中搜索: 我在https://guides.cocoapods.org/using/the-podfile.html中找到了版本冲突,但这并没有解决我的问题。