Xcode13更新后打包出错:
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
组件podspec及podfile中三方最低版本改为11以上后解决
2022.5.14编辑:
podfile:
platform :ios, '12.0'
podspec:
s.ios.deployment_target = '12.0'
项目工程中deploymentInfo改为支持iOS12以上
网友评论