Pod 是为较新版本的

乔什·洛尔

将我的项目的部署目标和目标从 IOS 10.3 更改为 9.0 后,我收到以下错误。我究竟做错了什么?

错误信息

编辑:这些错误仅在发布而不是调试中运行我的代码时出现

马利克

将此粘贴到 podfile 的末尾

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
    end
  end
end

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章