Including a private pod as a dependency of another private pod in .podspec file
问题 I have 2 private pods. Let's call them PrivateA and PrivateB . These used to not depend on each other, so I could use them both in my project pretty easily like so: source 'http://my-private-domain.com/PrivateA.git' source 'http://my-private-domain.com/PrivateB.git' source 'https://github.com/CocoaPods/Specs.git' target 'MyProject' do use_frameworks! # Pods for MyProject pod 'PrivateA', :git => 'http://my-private-domain.com/PrivateA.git' pod 'PrivateB', :git => 'http://my-private-domain.com