Created
August 18, 2019 12:15
-
-
Save akarsh/170156aeb037a2ffb557dc39e8327c99 to your computer and use it in GitHub Desktop.
Pod file configuration to supress CLANG documentation warning in Xcode 10+
This file contains hidden or 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['CLANG_WARN_DOCUMENTATION_COMMENTS'] = 'NO' | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment