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 파일로 간다.
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
}
}
다시 빌드해보면, 오류가 해결될 것이다! 👍👍
'Android' 카테고리의 다른 글
안드로이드 스튜디오 Database Inspector에서 DB가 안보일 때 (0) | 2021.06.04 |
---|---|
안드로이드 스튜디오 프로젝트 Java를 Kotlin으로 변환 (java kt로 바꾸기) (0) | 2021.05.28 |
안드로이드 타이틀 바 없애기 (0) | 2021.03.09 |
뷰바인딩 초기 작업 (0) | 2021.02.26 |
안드로이드 생명주기 (0) | 2021.02.23 |