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

gozero·2022년 6월 28일
0

🚨 에러를 잡아보자

목록 보기
14/35

에러 발생

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

해결 방법

프로젝트명/android/build.gradle 파일 [ext.kotlin_version] 버전 수정

buildscript {
    ext.kotlin_version = '1.6.10' //해당 부분을 1.6.10(기존 : 1.3.50)로 수정
    repositories {
        google()
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}
profile
Flutter를 제일 좋아하는 앱 프론트엔드 개발자입니다!

0개의 댓글