gufeczek
05/19/2024, 5:28 AMincludeBuild(../common)
.
But I also want to able build all composite builds from the root project, but in this approach I can't access the build task of these composite builds.
I'd be grateful if someone would put me on the right track. I want to cleanly separate parts that are not related but also to be able to reuse some common code. I am open to completly different approach to this problem, suggestions are appreciated.Ahmed Riyadh
05/19/2024, 1:14 PMgufeczek
05/19/2024, 1:47 PMAhmed Riyadh
05/19/2024, 1:50 PMimplementation(project(":shared"))
or common
and to configure Gradle to use this new module, create the older and add it in the settings.gradle.kts
by using include(":shared")
or common
(the name could be anything you want)
You seems to already know all of this, so I haven't understand the problemgufeczek
05/19/2024, 4:55 PMAhmed Riyadh
05/19/2024, 4:57 PM