Cocoapods:添加一个新的pod而不替换现有的旧pod

时间:2017-07-26 09:17:45

标签: cocoapods

我有一个项目,我之前添加了alamofire,但现在当我想添加另一个时,我看到它用alamofire替换新的一个我应该如何避免这个?

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!

target 'WeatherApp' do 
  pod 'TextFieldEffects',
  :git => 'https://github.com/raulriera/TextFieldEffects.git'
end

,结果是

  

删除alamofire并安装TextFieldEffects

1 个答案:

答案 0 :(得分:0)

试试这个

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, “9.0”
use_frameworks!

target 'WeatherApp' do
pod 'TextFieldEffects', :git =>'https://github.com/raulriera/TextFieldEffects.git' 
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git'
end

甚至这应该有效:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!

target 'WeatherApp' do
  pod 'TextFieldEffects'
  pod 'Alamofire'
end