Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM targe...

报错

Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' option

解决方案

android {
    ...
    compileOptions {
        sourceCompatibility = 1.8
        targetCompatibility = 1.8
    }
 
    kotlinOptions {
        jvmTarget = "1.8"
    }
}

你可能感兴趣的:(Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM targe...)