Created
October 2, 2016 17:51
-
-
Save azimin/049667574860a62ae9a170d6f309116c to your computer and use it in GitHub Desktop.
Podfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Uncomment this line to define a global platform for your project | |
# platform :ios, '9.0' | |
target 'YouApp' do | |
use_frameworks! | |
# Pods for YouApp | |
pod 'SwiftFramework', :branch => 'swift-2.3' | |
end | |
post_install do |installer| | |
installer.pods_project.targets.each do |target| | |
target.build_configurations.each do |config| | |
config.build_settings['SWIFT_VERSION'] = '2.3' | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment