In Gradle, you need to define the subprojects that will be created in the settings.gradle file. To create three child projects, you would do something like this:
include "child1", "child2", "child3"
The problem I am facing is that I have many projects to include. Is there a way to use a wildcard in this definition? I am looking for something like this:
include "*"
This, of course, does not work. It would be much easier to work with, as I have many subprojects to include. Is there a way to automatically include subdirectories as projects?
source
share