Android

Plugin [id: 'kotlin-android'] was not found in any of the following sources 오류 해결

노루룽 2021. 5. 23. 18:02

Plugin [id: 'kotlin-android'] was not found in any of the following sources

Plugin [id: 'kotlin-kapt'] was not found in any of the following sources

plugins {
    id 'com.android.application'
    id 'kotlin-android'
    id 'kotlin-kapt'
}

Room 라이브러리를 쓰려고 plugin에 'kotlin-android'와 'kotlin-kapt'를 추가하니까 이와 같은 오류가 났다.😢

 

해결 방법

Project 레벨의 Gradle 파일로 간다.

Project 레벨 Gradle로~~

Gradle 파일에 자기의 현재 코틀린 버전과, classpath를 추가해주면 된다!

buildscript {
    ext.kotlin_version = "1.5.0"
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.2.1"
        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
    }
}

 

다시 빌드해보면, 오류가 해결될 것이다! 👍👍