안드로이드 스튜디오를 업데이트하면서 아래와 같은 오류가 발생했다.
An exception occurred applying plugin request [id: 'com.android.application']
> Failed to apply plugin 'com.android.internal.application'.
> Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.
You can try some of the following options:
- changing the IDE settings.
- changing the JAVA_HOME environment variable.
- changing 'org.gradle.java.home' in 'gradle.properties'.
위 에러 메세지에서는
Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.
이 부분을 보면 된다.
Gradle 버전이 올라가면서 'com.android.application' 플러그인이 Java 11을 필요로 하는데, Java 1.8 버전을 사용하고 있기 때문에 발생했다.
이 문제는 간단하게 해결할 수 있다.
1. [File > Settings] 창을 연다.
2. [Build, Execution, Deployment > Build Tools > Gradle] 메뉴에서 Gradle JDK(빨간박스) 를 version 1.8에서 JAVA 11로 변경해주면 됩니다.
쉽게 해결 완료 !!
'개발 이야기' 카테고리의 다른 글
[Android Error] Can't determine type for tag '<macro name="m3_comp_bottom_app_bar_container_color"> (0) | 2022.12.13 |
---|---|
[Error] 안드로이드 FileNotFoundException: open failed: ENOENT (1) | 2022.07.27 |
[node.js] Express - cannot find module 'mysql' (0) | 2022.07.06 |
[node.js] Express - cannot find module 'ejs' (0) | 2022.07.05 |
[Node.js] forever 서버 프로세스 관리 - start, stop, list (0) | 2022.07.04 |