Skip to content

Instantly share code, notes, and snippets.

@phynet
Last active February 23, 2016 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phynet/18fe6804037b6e6e82ea to your computer and use it in GitHub Desktop.
Save phynet/18fe6804037b6e6e82ea to your computer and use it in GitHub Desktop.
Sharing pods between targets
#platform :ios, '8.0'
def shared_pods
pod 'Parse'
pod 'RNCryptor', '3.0.1', :inhibit_warnings => true
pod 'SSKeychain'
end
target 'MyApp' do
pod 'Fabric'
pod 'Crashlytics'
pod 'AFNetworking'
pod 'SDWebImage'
pod 'UIAlertView+Blocks'
shared_pods
end
target 'MyKeyboard' do
shared_pods
end
inhibit_all_warnings!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment