(cross-posted from <#C0B8PUJGZ|build-tools> where ...
# multiplatform
c
(cross-posted from #build-tools where I didn't get any answer)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.