I have a multimodule gradle project, one module being a multiplatform library with some expect/actua...
c
I have a multimodule gradle project, one module being a multiplatform library with some expect/actual declarations (among which for the jvm), another being a kotlin("jvm") library. The jvm library has
Copy code
implementation(project(":common-lib"))
in its dependencies, and does see the common code, but does not see the expect/actual declarations. Any idea why? Thanks.