Flutter Fix Your project requires a newer version of the Kotlin Gradle plugin.

662 단어 flutterflutter
`flutter 2.10.1`로 업그레이를 하니 빌드가 되지 않네요. 위 에러 코드를 보면 `kotlin` version문제인 것으로 보입니다.

android/build.gradle(프로젝트 수준의 buildGralde)에서 아래와 같이 ext.kotlin_version1.3.50에서 ->1.6.10으로 바꿔주면 끝.

buildscript {
    ext.kotlin_version = '1.6.10' //change this line.
    repositories {
        google()
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

좋은 웹페이지 즐겨찾기