Post

Replies

Boosts

Views

Activity

Reply to Incremental compilation has been disabled: it is not compatible with whole module optimization on Release build configuration
I think the problem is cause by pod. when you upgrade to 13.3, some pod target's option "ENABLE_BITCODE" have been set "YES", so you just need add code to your Podfile, just like this: post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['ENABLE_BITCODE'] = 'NO' end end end and clean project and delete cache, archive will be success.
Apr ’22