Flutter应用程序运行问题-失败:生成失败,出现异常

yhxst69z  于 2023-01-27  发布在  Flutter
关注(0)|答案(1)|浏览(551)

失败:生成失败,出现异常。

* What went wrong:
The Android Gradle plugin supports only Kotlin Gradle plugin version 1.5.20 and higher.
The following dependencies do not satisfy the required version:
project ':platform_device_id' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50

* 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

BUILD FAILED in 26s
Exception: Gradle task assembleDebug failed with exit code 1

在. yaml文件中,平台设备ID:^1.0.1 ',我需要修复应用程序运行问题。

a64a0gku

a64a0gku1#

这是由于项目中使用了最新版本的Gradle而导致的错误。platform_device_id包包含较低版本的Gradle和Kotlin,不支持使用最新版本的Gradle进行构建。
还有一个GitHub问题正在进行中,您可以通过link查看
解决方案是使用这个plugin,叫做device_info_plus。它是由Flutter社区自己提供的,所以它可以像你期望的那样无缝地工作。而且,它可以在所有平台上工作。

相关问题