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

Ohgyuchan·2022년 2월 14일
0

Flutter

목록 보기
1/25
post-thumbnail

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"
    }
}
profile
Flutter 개발자

2개의 댓글

comment-user-thumbnail
2022년 3월 14일

잘봤습니다 덕분에 오류해결했네요 감사합니다!!

1개의 답글