Answers for "cannot inline bytecode built with jvm target 1.8 into bytecode beinbuilt with jvm target 1.6."

2

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

compileKotlin {
    kotlinOptions {
        jvmTarget = JavaVersion.VERSION_1_8
    }
}
Posted by: Guest on September-15-2020

Code answers related to "cannot inline bytecode built with jvm target 1.8 into bytecode beinbuilt with jvm target 1.6."

Browse Popular Code Answers by Language