我正在使用CocoaPods来安装特定版本的AFNetworking
。我的podfile如下:
# Uncomment this line to define a global platform for your project
platform :ios, '7.0'
target "WGCore" do
pod 'XMPPFramework'
pod 'AFNetworking’, ’2.3.1’
pod 'FMDB'
pod 'Reachability'', '3.1'
end
target "WGCoreTests" do
end
我的安装命令是pod install --verbose --no-repo-update
我尝试删除了pod的缓存。
我试过删除了podlock。
但无论如何,我仍然得到AFNetworking 3.1.0
。
这是我第一次使用CocoaPods
。我错过了什么吗?
答案 0 :(得分:5)
About installing specific version
其他的话,你做得对。这可能是2.3.1(try~> 2)或(< 3)的问题。也许这个版本不适用于ios,'7.0',只有较低版本。仅使用pod install
。尝试reinstall cocoapods。卸载后使用gem cleanup
。
您可以在cocoapods(81d54e5)中安装manually或使用特定提交