SPRING :: NOTE

[ANDROID] Kotlin Plugin Error 본문

Development Language/JAVA · ANDROID

[ANDROID] Kotlin Plugin Error

RAYZIE 2019. 1. 16. 14:21
반응형

안드로이드 스튜디오를 업데이트 했는데 다음과 같은에러가 발생하고 빌드가 안됨.

The Android Gradle plugin supports only Kotlin Gradle plugin version 1.3.0 and higher.
The following dependencies do not satisfy the required version:
root project 'GCS' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.71


코틀린 버전이 안맞아서 그렇다고 함.


안드로이드 프로젝트 리스트에서

build.gradle(Projectg : xxx)로 이동


buildscript에서 다음을 변경

buildscript {
    ext.kotlin_version = '1.2.71' // 이 부분을 에러와 같은 버전으로 변경

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}




반응형
Comments