allprojects { ext.kotlin_version = '1.9.24' repositories { google() mavenCentral() } } rootProject.buildDir = '../build' subprojects { project.buildDir = "${rootProject.buildDir}/${project.name}" } subprojects { project.evaluationDependsOn(':app') } tasks.register("clean", Delete) { delete rootProject.buildDir } tasks.named('wrapper') { distributionType = Wrapper.DistributionType.ALL }