I have been using CocoaPods for a few weeks now with my iOS app and it works perfectly with the one target I have been testing (let\'s call it \"MainApp\"). However, I now w
If you have large number of targets and don't want to add new target each time, you can use this
def common_pods
pod 'TTTAttributedLabel', '~> 1.7.0'
pod 'iRate', '~> 1.7.5'
pod 'MBProgressHUD', '~> 0.6'
pod 'FlurrySDK', '~> 4.2.3'
pod 'ACSimpleKeychain', '~> 0.0.1'
pod 'WEPopover', '~> 0.0.1'
pod 'AFNetworking', '~> 1.3.1'
pod 'Nimbus', '~> 1.0.0'
pod 'QuincyKit', '~> 2.1.9'
end
project = Xcodeproj::Project.open “./.xcodeproj"
project.targets.each do |t|
target t.name do
common_pods
end