当前位置:   article > 正文

Flutter项目IOS真机调试及遇到的问题_this ios deployment target

this ios deployment target

问题一错误信息:

 warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions

    is 9.0 to 14.0.99. (in target 'connectivity' from project 'Pods')

解决:将下述内容添加在PodFile的最下方

  1. post_install do |installer|
  2. installer.pods_project.targets.each do |target|
  3. target.build_configurations.each do |config|
  4. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
  5. end
  6. end
  7. end

问题二错误信息:

Signing for "xxx" requires a development team. Select a development team

解决:安装Xcode,用xcode打开 flutter项目/ios/Runner.xcworkspace 这个文件,选择团队

问题三不受信任的开发者

解决方式:打开手机上的"设置->通用->设备管理->开发者应用",进入以后,点击"信任 xxxxx@xxx.com"

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/874462
推荐阅读
相关标签
  

闽ICP备14008679号