| 123456789101112131415161718192021222324 |
- allprojects {
- ext {
- compileSdkVersion = 34
- applicationId = "com.xingmeng.xiaoting"
- minSdkVersion = 23
- targetSdkVersion = 32
- }
- repositories {
- google()
- mavenCentral()
- }
- }
- rootProject.buildDir = "../build"
- subprojects {
- project.buildDir = "${rootProject.buildDir}/${project.name}"
- }
- subprojects {
- project.evaluationDependsOn(":app")
- }
- tasks.register("clean", Delete) {
- delete rootProject.buildDir
- }
|