Created
October 13, 2017 12:45
-
-
Save policante/29ca5901cbfec0fb609fafd3076e5202 to your computer and use it in GitHub Desktop.
Podfile with build settings SWIFT_VERSION specific
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 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 |
Author
policante
commented
Feb 1, 2018
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment