Hello! I have multi module gradle project with kot...
# gradle
p
Hello! I have multi module gradle project with kotlin multiplatform as a module. In one gradle module i created custom common sourceset and in other module i want to depend on them in common code. How can I do this?
j
Just
implementation(project(":some-module"))
p
I created new sourceset. You suggestion is for depend on common sourceset.
In other words i want to have several common targets in one gradle module. I know that it is now impossible and as workaround want to use SourceSets.dependsOn(sourceSets from other gradle module).