Android Studio 当我试图运行build commad时,我收到下面的错误消息build iOS应用程序

fcwjkofz  于 2023-02-09  发布在  Android
关注(0)|答案(2)|浏览(158)

正在调试模式下启动Gedo iPhone上的lib/main.dart...正在更新项目以兼容Xcode。正在升级Runner.xcscheme使用Xcode项目中的指定开发团队自动为设备部署签署iOS:xxxxx正在运行pod安装...正在运行Xcode构建... Xcode构建完成。91.5s无法构建iOS应用程序无法为设备构建预编译的应用程序。错误(Xcode):库/助手/通知助手.dart:22:29:错误:找不到构造函数“OASInitializationSettings”。
在Gedo iPhone上启动应用程序时出错。
flutter pub升级--主要版本flutter清理flutter pub获取cd ios && rm -f Podfile.lock pod安装--repo更新

emeijp43

emeijp431#

你可以进入XCode并运行iPhone应用程序。你会得到同样的错误。然后你需要点击错误图标,它会导致签署页面。输入正确的变化,并从XCode再次运行。当它运行,然后你可以退出XCode,并从Android Studio再次运行。

ssm49v7z

ssm49v7z2#

任务:app:compileFlutterBuildDebug ../../../. pub-cache/hosted/www.example.com错误:从" Package :Flutter/src/材料/底部_片材. dart"和" Package :模态_底部_片材/src/底部_片材_路线. dart"导入"模态底部片材路线"。pub.dev/modal_bottom_sheet-2.1.2/lib/src/material_with_modal_page_route.dart:4:1: 无法从返回类型为"Future〈T?〉"的异步函数返回类型为"Object?"的值。 ^^^^^^^^^^^^^^^^^^^^^ ../../../.pub-cache/hosted/pub.dev/modal_bottom_sheet-2.1.2/lib/src/bottom_sheets/material_bottom_sheet.dart:28:13: Error: 'ModalBottomSheetRoute' is imported from both 'package:flutter/src/material/bottom_sheet.dart' and 'package:modal_bottom_sheet/src/bottom_sheet_route.dart'. .push(ModalBottomSheetRoute( ^^^^^^^^^^^^^^^^^^^^^ ../../../.pub-cache/hosted/pub.dev/modal_bottom_sheet-2.1.2/lib/src/bottom_sheets/material_bottom_sheet.dart:50:10: Error: A value of type 'Object?' can't be returned from an async function with return type 'Future<T?>'.

  • "对象"来自"dart:core"。
  • "Future"来自"dart:async"。返回结果;^../../../. pub-cache/hosted/www.example.com错误:'ModalBottomSheetRoute'同时从'package:flutter/src/material/bottom_sheet. dart'和'package:modal_bottom_sheet/src/bottom_sheet_route. dart'中导入... push(ModalBottomSheetRoute(^^^^^^^^^^^^^^^^^^^^^^^^^^^^../../. pub-cache/hosted/www.example.com错误:无法从返回类型为'Future〈T?〉'的异步函数返回类型为'Object?'的值。 pub.dev/modal_bottom_sheet-2.1.2/lib/src/bottom_sheets/bar_bottom_sheet.dart:102:13: Error: 'ModalBottomSheetRoute' is imported from both 'package:flutter/src/material/bottom_sheet.dart' and 'package:modal_bottom_sheet/src/bottom_sheet_route.dart'. .push(ModalBottomSheetRoute( ^^^^^^^^^^^^^^^^^^^^^ ../../../.pub-cache/hosted/ pub.dev/modal_bottom_sheet-2.1.2/lib/src/bottom_sheets/bar_bottom_sheet.dart:125:10: Error: A value of type 'Object?' can't be returned from an async function with return type 'Future<T?>'.
  • "对象"来自"dart:core"。
  • "Future"来自"dart:async"。返回结果;^目标内核快照失败:例外情况

相关问题