java 11 bytecode requirement #3131
Unanswered
chla-android
asked this question in
Q&A
Replies: 1 comment
-
You're right, it looks like this is only required for the JVM (desktop) target in Compose Multiplatform. I think we can go back to Java 8 bytecode on Android: #3138 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Why is there the following notes in coil3 3.2.0 ?
Important: coil-compose and coil-compose-core now require Java 11 bytecode due to Compose 1.8.0 requiring it. See here for how to enable it.
I haven't found this kind of requirement in compose 1.8.x, and release notes of the version 1.9.0 still use jvmTarget="1.8"
dependencies {
implementation("androidx.compose.ui:ui:1.9.0")
}
android {
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.15"
}
kotlinOptions {
jvmTarget = "1.8"
}
}
Beta Was this translation helpful? Give feedback.
All reactions