Skip to content

Instantly share code, notes, and snippets.

@odedharth
Created April 11, 2017 15:59
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 odedharth/15634abf3be69e4a0617249ce387cf05 to your computer and use it in GitHub Desktop.
Save odedharth/15634abf3be69e4a0617249ce387cf05 to your computer and use it in GitHub Desktop.
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target 'MDAcne' do
pod 'LaunchKit'
pod 'ReachabilitySwift', '~> 3'
pod 'Alamofire', '~> 4.0'
pod 'IQKeyboardManagerSwift'
pod 'CNPPopupController', :git => 'https://github.com/odedharth/CNPPopupController.git'
pod 'OpenCV', '= 2.4.9'
pod 'Mixpanel'
pod 'Fabric'
pod 'Crashlytics'
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'UIColor_Hex_Swift', '~> 3.0.2'
pod 'EZSwiftExtensions'
pod 'SwiftyStoreKit'
pod 'TTTAttributedLabel'
pod 'UIImageViewAlignedSwift'
pod 'Kingfisher'
pod 'GoogleConversionTracking'
pod 'StarryStars', :git => 'https://github.com/odedharth/StarryStars.git'
pod 'Charts'
pod 'RealmSwift'
pod 'FLAnimatedImage', :git => 'https://github.com/ataka/FLAnimatedImage', :branch => 'master'
pod 'SideMenu'
pod 'Instructions', :git => 'https://github.com/ephread/Instructions.git', :branch => 'swift3'
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod 'FBSDKLoginKit'
pod 'YLProgressBar'
pod 'SAConfettiView', :git => 'https://github.com/gokhanakkurt/SAConfettiView.git', :branch => 'swift3'
pod 'MZTimerLabel'
pod 'UXCam'
pod 'ActionSheetPicker-3.0'
pod 'GSImageViewerController'
pod 'Pager'
pod 'SuperBadges'
pod 'Taplytics'
pod 'Branch'
pod 'HotlineSDK'
end
post_install do |installer|
installer.pods_project.build_configuration_list.build_configurations.each do |configuration|
configuration.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
configuration.build_settings['ENABLE_BITCODE'] = 'NO'
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment