Created
July 30, 2020 17:09
-
-
Save iannase/78c522bbccb5811f57a0f1121408f58e to your computer and use it in GitHub Desktop.
Remove duplicate symbol file warning from app uploads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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