问题一错误信息:
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" |