Skip to content

Instantly share code, notes, and snippets.

@policante
Created October 13, 2017 12:45
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 policante/29ca5901cbfec0fb609fafd3076e5202 to your computer and use it in GitHub Desktop.
Save policante/29ca5901cbfec0fb609fafd3076e5202 to your computer and use it in GitHub Desktop.
Podfile with build settings SWIFT_VERSION specific
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'MyProject' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
end
@policante
Copy link
Author

policante commented Feb 1, 2018

  pod 'LGButton'
  pod 'IQKeyboardManagerSwift'
  pod 'VMaskTextField'
  pod 'SideMenuController'
  pod 'Alamofire', '~> 4'
  pod 'SwiftyJSON', '~> 3.0'
  pod 'AlamofireNetworkActivityIndicator', '~> 2'
  pod 'RxSwift', '~> 3.0'
  pod 'RxCocoa', '~> 3.0'
  pod 'AlamofireImage', '~> 3'
  pod 'Moya/RxSwift', '~> 8.0'
  pod 'Moya-ObjectMapper/RxSwift', '~> 2.3'
  pod 'Kingfisher'
  pod 'MIAlertController'
  pod 'ALLoadingView'
  pod 'ISMessages'
  pod 'PageControl'
  pod 'SlideMenuControllerSwift'
  pod 'Charts', '3.0.2'
  pod 'SwiftKeychainWrapper'
  pod 'DatePickerDialog'
  pod 'DropDown'
  pod 'libPhoneNumber-iOS'
  pod 'VeeContactPicker'
  pod 'ActionSheetPicker-3.0', '~> 2.2.0'
  
  pod 'Firebase/Core'
  pod 'Firebase/Messaging'
  pod 'Firebase/Crash'
  
  pod 'Siren'
  pod 'Segmentio', '~> 2.1'
  
  pod 'GoogleMaps'
  pod 'GooglePlaces'
  pod 'SAConfettiView', :git => 'https://github.com/gokhanakkurt/SAConfettiView.git', :branch => 'swift3'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment