Skip to content

Instantly share code, notes, and snippets.

@embassem
Created December 4, 2016 14:33
Show Gist options
  • Select an option

  • Save embassem/36882fead602384ec49f5f04dba37c9f to your computer and use it in GitHub Desktop.

Select an option

Save embassem/36882fead602384ec49f5f04dba37c9f to your computer and use it in GitHub Desktop.
fix pods error with swift 3
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment