IT기술 관련/모바일
[안드로이드 스튜디오] Plugin with id 'com.android.application' not found
호레
2019. 5. 25. 23:57
반응형
출처: https://comoi.io/156 [코모스튜디오]
Gradle에서 이 에러가 나온다면
Plugin with id 'com.android.application' not found.
build.gradle에
buildscript {
repositories {
jcenter() // or mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
}
}
를 추가 해주면 된다.
그래도 에러가 계속 난다면?
위 노랑이의 위치를
apply plugin: "com.android.application"
바로 위로 옮기면 된다.
출처: https://comoi.io/156 [코모스튜디오]
반응형