Skip to content

Instantly share code, notes, and snippets.

@embassem
Created February 13, 2018 13:12
Show Gist options
  • Select an option

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

Select an option

Save embassem/d4685708bc4066f90d09824f0f0455a6 to your computer and use it in GitHub Desktop.
Ignore Pods Warning in Xcode
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = 'YES'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment