站长博客
站长博客随手笔记
Toggle navigation
站长博客
Home
MacOS
Database
Linux
PHP
Git
Golang
About Me
Archives
Tags
Flutter项目IOS真机调试及遇到的问题
Flutter
iOS
2021-07-03 13:05:45
227
0
0
admin
Flutter
iOS
#### **问题一、错误信息:** ``` 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的最下方 ``` 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 ``` #### **问题二、错误信息:*** ``` Signing for "xxx" requires a development team. Select a development team ``` 解决:安装Xcode,用xcode打开 flutter项目/ios/Runner.xcworkspace 这个文件,选择团队 #### **问题三、不受信任的开发者** 解决方式:打开手机上的"设置->通用->设备管理->开发者应用",进入以后,点击"信任 xxxxx@xxx.com"
Prev:
怎么在Mac上的Android Studio调试Android手机?
Next:
ffmpeg加水印、logo等
0
likes
227
Weibo
Wechat
Tencent Weibo
QQ Zone
RenRen
Table of content