我正试图通过Flutter建立APK,但每次我运行应用程序,我得到了这个错误
Flutter Fix ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ [!] Your project requires a newer version of the Kotlin Gradle plugin. │
│ Find the latest version on https://kotlinlang.org/docs/gradle.html#plugin-and-versions, then update D:\Taxi\Flutter\Driver\android\build.gradle: │
│ ext.kotlin_version = '<latest-version>' │
└────────────────────────────────────────────────
问题是我已经用了最新版本
buildscript {
ext.kotlin_version = '1.8.0-RC'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.14'
}
}
我也试过ext.kotlin_version = '1.7.20
,但同样的问题,我无法处理错误
我需要找到问题的来源或如果任何人有解决方案
1条答案
按热度按时间q5iwbnjs1#
确保IDE支持
https://kotlinlang.org/docs/releases.html#ide-support
并使用:
扩展kotlin_版本='1.7.20'