Skip to content

Instantly share code, notes, and snippets.

@warren-gavin
Created July 25, 2016 08:26
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 warren-gavin/7cbf8606ae53962c2fb46996d5493250 to your computer and use it in GitHub Desktop.
Save warren-gavin/7cbf8606ae53962c2fb46996d5493250 to your computer and use it in GitHub Desktop.
Swift 3 post installer for Podfiles
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'YES'
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