cocoapods - Cocopods: add a new pod without replacing existing old one -


hi have project added alamofire before when want add saw replacing new 1 alamofire how should avoid ????

source 'https://github.com/cocoapods/specs.git' platform :ios, '9.0' use_frameworks!  target 'weatherapp'    pod 'textfieldeffects',   :git => 'https://github.com/raulriera/textfieldeffects.git' end 

and result is

removing alamofire , install textfieldeffects

try this

source 'https://github.com/cocoapods/specs.git' platform :ios, “9.0” use_frameworks!  target 'weatherapp' pod 'textfieldeffects', :git =>'https://github.com/raulriera/textfieldeffects.git'  pod 'alamofire', :git => 'https://github.com/alamofire/alamofire.git' end 

or should work:

source 'https://github.com/cocoapods/specs.git' platform :ios, '9.0' use_frameworks!  target 'weatherapp'   pod 'textfieldeffects'   pod 'alamofire' end 

Comments

Popular posts from this blog

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

transpose - Maple isnt executing function but prints function term -