readability-dart/example/android/build.gradle
Sphericalkat 1d52c7b78b
Initial commit
Signed-off-by: Sphericalkat <me@kat.bio>
2024-07-18 00:29:09 +05:30

19 lines
322 B
Groovy

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
}