In my podfile, I just added this to make everything compatible to Xcode 12
target.build_configurations.each do |config|
config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf'
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] == '8.0'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
config.build_settings['ARCHS'] = '$(ARCHS_STANDARD_64_BIT)'
end
You need to added after
post_install do |installer|
installer.pods_project.targets.each do |target|