Skip to content

Instantly share code, notes, and snippets.

@irace
Created October 13, 2017 01:09
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 irace/2dc4f0659dcbb7e0035cb8b224f91204 to your computer and use it in GitHub Desktop.
Save irace/2dc4f0659dcbb7e0035cb8b224f91204 to your computer and use it in GitHub Desktop.
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'ServiceKit' || target.name == 'SharedUI' || target.name == 'ContactPicker'
target.build_configurations.each do |config|
if config.name == 'Debug'
config.build_settings['OTHER_SWIFT_FLAGS'] = '-Xfrontend -warn-long-function-bodies=100'
else
config.build_settings['OTHER_SWIFT_FLAGS'] = ''
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment