plugins{ id ("com.google.gms.google-services") version "4.4.2" apply false } allprojects { repositories { google() mavenCentral() } } val newBuildDir = rootProject.layout.buildDirectory.dir("../../build").get() rootProject.layout.buildDirectory.set(newBuildDir) subprojects { val newSubprojectBuildDir = newBuildDir.dir(project.name) project.layout.buildDirectory.set(newSubprojectBuildDir) } subprojects { project.evaluationDependsOn(":app") } tasks.register("clean") { delete(rootProject.layout.buildDirectory) }