본문 바로가기
coding/react native

[React Native] jdk8 build error

by 코딩희송 2021. 9. 3.

평상시 처럼 안드로이드를 빌드했는데 java 관련 빌드 에러 발생.

An exception has occurred in the compiler (1.8.0_265). Please file a bug against the Java compiler via the Java bug reporting page (http://bugreport.java.com) after checking the Bug Database (http://bugs.java.com) for duplicates. Include your program and the following diagnostic in your report. Thank you.
java.lang.AssertionError: annotationType(): unrecognized Attribute name MODULE (class com.sun.tools.javac.util.UnsharedNameTable$NameImpl)

자바 버전을 11로 업그레이드 해주니까 해결되었다.

brew install --cask adoptopenjdk11

java --version 확인해주고

프로젝트 다시 열어서 yarn android 하면 됨~!

댓글