안드로이드 앱 개발시 아주 간혹 발생하는 BootstrapMethodError 이 있습니다.. 여러가지 BootstrapMethodError이 발생해서 디버깅이 쉽지가 않습니다. *. Java 버전 업데이트 -. Build.gradle (App)에서 target을 최신으로 변경해줍니다. 아래 파란색 compileoptions를 참고하세요. compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } 이후에는 아래처럼 clean build 및 rebuild 메뉴를 통해서 다시 빌드를 해주면 문제가 해결됩니다. Thrown to indicate that an invokedynam..