Skip to content

Instantly share code, notes, and snippets.

@iannase
Created July 30, 2020 17:09
Show Gist options
  • Save iannase/78c522bbccb5811f57a0f1121408f58e to your computer and use it in GitHub Desktop.
Save iannase/78c522bbccb5811f57a0f1121408f58e to your computer and use it in GitHub Desktop.
Remove duplicate symbol file warning from app uploads
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings[‘DEBUG_INFORMATION_FORMAT’] = ‘dwarf’
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment