Ruckus
12/11/2020, 8:19 PMCannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' optionBut I have it set in my gradle
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "15"
useIR = true
}
}
And in my project settings, so I'm not sure what would be causing that. Any ideas?
The code compiles and runs fine. The error is only in the IDE.Timo Drick
12/11/2020, 8:44 PMRuckus
12/11/2020, 8:46 PMPossible values: "1.6", "1.8", "9", "10", "11", "12", "13", "14", "15" Default value: "1.6"
Timo Drick
12/11/2020, 8:50 PMTimo Drick
12/11/2020, 8:50 PMRuckus
12/11/2020, 8:50 PMRuckus
12/11/2020, 8:51 PMRuckus
12/11/2020, 8:53 PMTimo Drick
12/11/2020, 8:54 PMRuckus
12/11/2020, 8:55 PMTimo Drick
12/11/2020, 8:59 PMRuckus
12/11/2020, 9:01 PMmain
) works without issue.Ananiya
12/12/2020, 4:08 PMRuckus
12/12/2020, 8:24 PM