allprojects { ext { compileSdkVersion = 34 applicationId = "com.manbu.zhuanwenzi" minSdkVersion = 23 targetSdkVersion = 33 appcompat_version = "1.6.1" constraintlayout_version = "2.1.4" immersionbar_version = "3.2.2" } repositories { google() mavenCentral() maven { credentials { username "$atmob_maven_username" password "$atmob_maven_password" } allowInsecureProtocol = true url "$atmob_maven_url/repository/android-group/" } } } rootProject.buildDir = "../build" subprojects { project.buildDir = "${rootProject.buildDir}/${project.name}" } subprojects { project.evaluationDependsOn(":app") } tasks.register("clean", Delete) { delete rootProject.buildDir }