Dobrin Tinchev
Results
1
comments of
Dobrin Tinchev
You can resolve this by adding a post-install step in your Podfile where you disable deprecation warnings ``` installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS'] = 'NO' end end ```