美文网首页
flutter开发,Xcode 14.3更新后问题2.'IPHO

flutter开发,Xcode 14.3更新后问题2.'IPHO

作者: 罐罐金 | 来源:发表于2023-04-10 09:18 被阅读0次

The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 11.0 to 16.2.99.installer.generated_projects.eachdo|project|

上来是问题---以下是解决方法

在项目的文件下/ios/Podfile文件中最底部:

       project.targets.eachdo|target|

           target.build_configurations.eachdo|config|

               config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] ='11.0'

            end

       end

     end

在最后加上这句

相关文章

网友评论

      本文标题:flutter开发,Xcode 14.3更新后问题2.'IPHO

      本文链接:https://www.haomeiwen.com/subject/eciiddtx.html