When using compose 1.9.0-alpha02 I get the followi...
# compose-desktop
t
When using compose 1.9.0-alpha02 I get the following error, did something go wrong with publishing?
Copy code
Could not find org.jetbrains.androidx.window:window-core-desktop:1.4.0-alpha07
i
Yes, unfortunately, there was an error during publication. We will look at it next week and publish it.
👍 1
Try this workaround until it is fixed:
Copy code
implementation("org.jetbrains.compose.material3.adaptive:adaptive:1.2.0-alpha02") {
        exclude(group = "org.jetbrains.androidx.window")
    }
    implementation("androidx.window:window-core-jvm:1.4.0")
In navigation-suite as well if you use it
t
@Igor Demin Hi. I get this when i try to add the workaround dependency.
Copy code
:composeApp:jvmMain: Could not find org.jetbrains.androidx.window:window-core-desktop:1.4.0-alpha07.
Required by:
    project :composeApp > org.jetbrains.compose.material3.adaptive:adaptive:1.2.0-alpha02 > org.jetbrains.compose.material3.adaptive:adaptive-desktop:1.2.0-alpha02 > org.jetbrains.androidx.window:window-core:1.4.0-alpha07
i
Try CMP 1.9.0-alpha03 + adaptive 1.2.0-alpha03, that are released recently.
t
Thank you @Igor Demin. Everything seems to work and i can also run the jvm target.