upload android app

This commit is contained in:
eventlOwOp
2024-05-19 01:37:15 +08:00
parent 53e2fca297
commit 162014041d
33 changed files with 1142 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
allprojects {
repositories {
google()
maven { url 'https://mirrors.tuna.tsinghua.edu.cn/flutter/download.flutter.io' }
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}