Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6
解决 :
android {
....
Options {
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 target 1.6
解决 :
android {
....
Options {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
kotlinOptions {
jvmTarget = "1.8"
}
}
本文标题:Cannot inline bytecode built wit
本文链接:https://www.haomeiwen.com/subject/hgurmhtx.html
网友评论