민프

[Android Error] Exception from call site #45 bootstrap method 본문

[Android Error]

[Android Error] Exception from call site #45 bootstrap method

민프야 2021. 7. 7. 17:21

Exception from call site #45 bootstrap method
이라는 오류가 났다..

 

해결 방법은

 

gradle app에서

    compileOptions{
        targetCompatibility = "8"
        sourceCompatibility ="8"
    }

자바8로 업그레이드를 시켜주면 된다.

Comments