Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
Description
Re-posting from Compose Multiplatformhttps://youtrack.jetbrains.com/issue/CMP-7054
Bug Description
When both JavaFX and Swing dispatchers are on the classpath the following exception is thrown:
Affected Platforms
Desktop
Versions
Reproduction Steps
Run any Compose Desktop application when JavaFX coroutine dispatcher is also on the classpath.
Additional Information
Function
awaitApplication
in packageandroidx.compose.ui.window
explicitly uses the Swing dispatcher. However,androidx.lifecycle.MainDispatcherChecker
will consider the JavaFX dispatcher as Main when available on the classpath and incorrectly report the error.Current Workaround
Provide custom implementation of
kotlinx.coroutines.internal.MainDispatcherFactory
that loads the Swing dispatcher with higher priority than JavaFX.