Xcode 13 Archive Error

Xcode 升级到13后 archive 报错

remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
Command CompileSwiftSources failed with a nonzero exit code


image.png

Swift libraries depending on Combine may fail to build for targets including armv7 and i386 architectures. (82183186, 82189214) Workaround: Use an updated version of the library that isn’t impacted (if available) or remove armv7 and i386 support (for example, increase the deployment target of the library to iOS 11 or higher).

解决办法

image.png

对应第三方库的Deployment Target 更改成iOS11.0以上

image.png

你可能感兴趣的:(Xcode 13 Archive Error)