rustdesk/flutter/android/build.gradle

20 lines
360 B
Groovy
Raw Normal View History

2020-11-06 18:04:04 +08:00
allprojects {
repositories {
google()
jcenter()
2022-02-08 22:44:32 +08:00
maven { url 'https://jitpack.io' }
2020-11-06 18:04:04 +08:00
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
2020-11-06 18:04:04 +08:00
project.evaluationDependsOn(':app')
}
2023-05-22 16:23:19 +08:00
tasks.register("clean", Delete) {
2020-11-06 18:04:04 +08:00
delete rootProject.buildDir
}