首页 > 解决方案 > 目标 kernel_snapshot 失败:异常:快照创建期间出错:空构建失败

问题描述

我已经更新到最新的颤振更新。当我想启动项目时,它返回一个错误。该项目依赖于几个存储库,我不知道这是否是原因。我尝试了多种解决方案,但都没有解决错误。希望可以有人帮帮我。谢谢。

编译器消息:

/C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/mvvm-0.1.7/lib/view_context_helpers/logical.dart:151:25: Error: The function expression type 'Widget Function(BuildContext, Null, Widget) Function(TValue)' isn't of expected type 'Widget Function(BuildContext, TValue, Widget) Function(TValue)'.

 - 'Widget' is from 'package:flutter/src/widgets/framework.dart' ('/C:/src/flutter/packages/flutter/lib/src/widgets/framework.dart').
 - 'BuildContext' is from 'package:flutter/src/widgets/framework.dart' ('/C:/src/flutter/packages/flutter/lib/src/widgets/framework.dart').
Change the type of the function expression or the context in which it is used.
              selector: (TValue value) =>
                        ^
Target kernel_snapshot failed: Exception: Errors during snapshot creation: null
build failed.

FAILURE: Build failed with an exception.

* Where:
Script 'C:\src\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 780

* What went wrong:
Execution failed for task ':app:compileFlutterBuildDebug'.
> Process 'command 'C:\src\flutter\bin\flutter.bat'' finished with non-zero exit value 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BU�LD FAILED in 31s
Finished with error: Gradle task assembleDebug failed with exit code 1

标签: flutter

解决方案


我发现了这个 问题TL:DR here is a summary

看起来您的本地引擎构建颤振/引擎和框架 + 工具颤振/颤振不同步:您使用的SemanticsFlag.isLink是添加之后的引擎,但框架/工具在它滚入框架之前使用。

您需要确保使用兼容的引擎和框架。在这种情况下,您需要将flutter/flutter更新到较新的版本,或者将flutter/engine回滚到较旧的版本。42356


推荐阅读