Skip to content

Instantly share code, notes, and snippets.

@mitchellporter
Created November 29, 2015 21:16
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 mitchellporter/1a9db4fd256e34089d64 to your computer and use it in GitHub Desktop.
Save mitchellporter/1a9db4fd256e34089d64 to your computer and use it in GitHub Desktop.
Swift project's podfile
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
link_with ‘MyAppName’
platform :ios, '8.0'
inhibit_all_warnings!
target ‘MyAppName’ do
pod 'Parse'
pod 'ParseFacebookUtilsV4'
pod 'Reveal-iOS-SDK', :configurations => ['Debug']
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
pod 'CardIO'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment