Translate-Flutter/android/build.gradle
fengshengxiong c39a412706 init connmit
2024-07-01 14:18:42 +08:00

19 lines
322 B
Groovy
Executable File

allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}