yokutango-mobile-reader/android/build.gradle

19 lines
322 B
Groovy
Raw Permalink Normal View History

2022-01-26 00:25:07 +01:00
allprojects {
repositories {
google()
mavenCentral()
}
}
2024-04-26 01:14:49 +02:00
rootProject.buildDir = "../build"
2022-01-26 00:25:07 +01:00
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
2024-04-26 01:14:49 +02:00
}
subprojects {
project.evaluationDependsOn(":app")
2022-01-26 00:25:07 +01:00
}
2024-04-26 01:14:49 +02:00
tasks.register("clean", Delete) {
2022-01-26 00:25:07 +01:00
delete rootProject.buildDir
}