在 pod profile 中添加:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] ="12.1"
end
end
end
注意:最低支持的版本号需根据自己项目的需求更改,本项目最低iOS 版本为 12.1
最后执行:pod install