I was trying to compile gradle multimodule project...
# compose-desktop
p
I was trying to compile gradle multimodule project with desctop-compose artifact in each module. If I compile only one module it is ok. But when I add another gradle module with dependency on first module I got an error:
Copy code
androidx.compose.compiler.plugins.kotlin.IncompatibleComposeRuntimeVersionException: You are using an outdated version of Compose Runtime that is not compatible with the version of the Compose Compiler plugin you have installed. The compose compiler plugin you are using (version 1.0.0-alpha13) expects a minimum runtime version of 1.0.0-alpha13.
v
This error happens when your program calls the same dependency multiple times. Somewhere you are calling the dependency a second time.
p
@Vahalaru Thank you! You saved my time!