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