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

html - How to custom Bootstrap grid height? -

javascript - pass values from mssql to views in node -

image - python get coordinates (pixels) of corresponding points from clicks -