allprojects { repositories { google() mavenCentral() } } rootProject.buildDir = "../build" subprojects { project.buildDir = "${rootProject.buildDir}/${project.name}" } subprojects { // fix for verifyReleaseResources // ============ afterEvaluate { project -> if (project.plugins.hasPlugin("com.android.application") || project.plugins.hasPlugin("com.android.library")) { project.android { compileSdkVersion 34 buildToolsVersion "34.0.0" } } if (project.hasProperty("android")) { project.android { if (namespace == null) { namespace project.group } } } } // ============ project.evaluationDependsOn(":app") } tasks.register("clean", Delete) { delete rootProject.buildDir }