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
Post a Comment