在引入一些库或升级一些库后,运行应用遇到如下问题:
Caused by: java.lang.ClassCastException: Bootstrap method returned null
或
Caused by: java.lang.BootstrapMethodError: Exception from call site #4 bootstrap method
一些时候,你需做如下改动以解决问题:
updating your build.gradle.
android {
····
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
网友评论