/Users/avinashkasukurthi/Developer/Flutter Projects/zopnote/consumer-app/ios/Pods/Pods.xcodeproj: warning: 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.1.99. (in target 'gRPC-C++' from project 'Pods')
warning: Run script build phase 'Create Symlinks to Header Folders' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'gRPC-C++' from project 'Pods')
warning: Run script build phase 'Run Script' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Runner' from project 'Runner')
warning: Run script build phase 'Thin Binary' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Runner' from project 'Runner')
Result bundle written to path:
/var/folders/vv/l96pnk5d49z96x0w400w0r0m0000gn/T/flutter_tools.jlRzPP/flutter_ios_build_temp_dira4jNaQ/temporary_xcresult_bundle无法为模拟器构建应用程序。在iPhone 13上启动应用程序时出错。
发布于 2022-11-11 06:14:30
请在此行平台的检查中转到Podfile中:ios,' 9.0‘,如果它的注释行取消注释,请将其更改为11.0或12.0。像这样

编辑
向下滚动到Podfile的末尾,您会发现如下所示

增加这一行:
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'发布于 2022-11-11 06:34:52
替换所有
IPHONEOS_DEPLOYMENT_TARGET = 8.0或
IPHONEOS_DEPLOYMENT_TARGET = 9.0使用
IPHONEOS_DEPLOYMENT_TARGET = 11.0https://stackoverflow.com/questions/74398584
复制相似问题