Hello,
this morning when i started my macbook it was doing an update of Xcode, from version 14 to 15 and my apps that use firebase (for the push notifications) stopped working.
There is something wrong with the current version of Cocoapods and they will fix in the next release, for now this is the workaround:
in your ios/App/Podfile modify as follows:
# This is workaroud for CocoaPods blocker
# @see https://github.com/CocoaPods/CocoaPods/pull/12009
# This has to be removed after CocoaPods release fix
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.base_configuration_reference
xcconfig_path = config.base_configuration_reference.real_path
xcconfig = File.read(xcconfig_path)
xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
end
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
the error log says: