我的flutter应用程序是拒绝运行时添加audioplayer依赖项

7cwmlq89  于 2023-01-14  发布在  Flutter
关注(0)|答案(1)|浏览(120)

flutter应用程序是不运行当我添加audioplayer到这依赖在pub文件但它的作品当我从这依赖删除它
它显示此异常:

> Failed to apply plugin 'kotlin-android'.
   > The current Gradle version 6.7 is not compatible with the Kotlin Gradle plugin. Please use Gradle 6.7.1 or newer, or the previous version of the Kotlin plugin.
9gm1akwq

9gm1akwq1#

您可以更新您的gradle版本,因此您可以在以下链接中查看所有可用版本:
https://developer.android.com/studio/releases/gradle-plugin?gclid=CjwKCAiAheacBhB8EiwAItVO2_F66xegnNqO5Wd2ruBlRa2jgBpCLw-QuciP-4OwhL4IIcnM2n-_5xoCls4QAvD_BwE&gclsrc=aw.ds#groovy
您可以根据以下链接更新到最新的Kotlin版本:
https://kotlinlang.org/docs/gradle-configure-project.html#apply-the-plugin

相关问题