Alexandru Hadar
03/03/2025, 2:30 PMsettings.gradle.kts
I have a lot of `include()`'s. I was thinking of extracting all those includes out, in extension functions.
e.g.:
include("demo-1")
include("demo-2")
include("demo-3")
include("feature-a")
include("feature-b")
Could I somehow create an extension function, outside this file, and include all those in there, afterwards only calling
includeDemoModules()
includeFeatureModules()
?Vampire
03/03/2025, 2:34 PMAlexandru Hadar
03/03/2025, 2:36 PMVampire
03/03/2025, 2:37 PMAlexandru Hadar
03/03/2025, 2:39 PMSettings
object i meanVampire
03/03/2025, 2:40 PMAlexandru Hadar
03/03/2025, 2:41 PMsettings.gradle.kts
file using apply(from="path....")
?Vampire
03/03/2025, 2:42 PMVampire
03/03/2025, 2:43 PMAlexandru Hadar
03/03/2025, 2:44 PMVampire
03/03/2025, 2:44 PMapply
method of the plugin classVampire
03/03/2025, 2:44 PMVampire
03/03/2025, 2:45 PMVampire
03/03/2025, 2:48 PMAlexandru Hadar
03/03/2025, 2:49 PMAlexandru Hadar
03/03/2025, 2:50 PM