赞
踩
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"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。