``` rootProject.children.each { it.buildFileNa...
# gradle
s
Copy code
rootProject.children.each {
    it.buildFileName = it.name + '.gradle'
}
seems to be working. I needed to move it to the bottom of
settings.gradle
g
Copy code
subporjects {
    buildFileName = "${name}.gradle"
}
s
this would be in the settings.gradle, or the root gradle file?
g
Settings
Hmm, not sure that it will work 😬 didn't try
s
it doesn't
subprojects cant be found