settings.gradle(.kts)

Notes

rootProject.name = "demo"
include("app", "list", "utilities")

rootProject.name assigns a name to the build, which overrides the default behavior of naming the build after the directory it’s in. It’s recommended to set a fixed name as the folder might change if the project is shared - e.g. as root of a Git repository.

include("app", "list", "utilities") defines that the build consists of three subprojects in the corresponding folders. More subprojects can be added by extending the list or adding more include(…​) statements.

References