관리 메뉴

막내의 막무가내 프로그래밍 & 일상

[안드로이드] java.lang.BootstrapMethodError: Exception from call site #4 bootstrap method 에러 본문

안드로이드

[안드로이드] java.lang.BootstrapMethodError: Exception from call site #4 bootstrap method 에러

막무가내막내 2020. 1. 2. 22:27
728x90

 

레트로핏2를 이용하다가 다음과 같은 에러가 계속나고 뭐가 틀린지도 모르고 계속 이상한것만 고치며 삽질을 하였다.

 

해결방법은 자바 8로 업글을 해주는거였다. (엄청난 삽질)

모듈수준의 gradle에 다음을 추가하자

compileOptions {
        targetCompatibility = "8"
        sourceCompatibility = "8"
    }
728x90
Comments