Flutter,Your project requires a newer version of the Kotlin Gradle plugin
到Kotlinglang.org網站,吧kotlin的最新版本填寫到projectname/andorid/build.gradle裡面即可解決。
buildscript { ext.kotlin_version = '1.6.20' repositories { google() mavenCentral() }┌─ 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:\LaptopBackup\Project\Flutter\e_shop\android\build.gradle: │
│ ext.kotlin_version = '<latest-version>' │
└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
Gradle task assembleRelease failed with exit code 1
https://kotlinlang.org/docs/gradle.html#plugin-and-versions
plugins {
kotlin("<...>") version "1.6.20"
}