Tim Malseed
09/12/2020, 5:41 AMshared
and desktop
.
'Shared' is the typical multiplatform
gradle project, declaring commonMain
and jvmMain
sourcesets.
'Desktop' depends on 'shared', via:
implementation(project(":shared"))
However, the 'shared' source files don't seem to be available to the 'desktop' module. Do I need to do something special to 'publish' shared, or otherwise make it accessible to other modules?william
09/13/2020, 3:44 PMTim Malseed
09/13/2020, 11:35 PMGurupad Mamadapur [FH]
09/18/2020, 9:52 AMimplementation project(":shared")
in the dependencies of the module where you want it should do. Can you share both the gradle files?william
09/27/2020, 3:57 PM