mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-16 15:52:17 +08:00
17 lines
266 B
Plaintext
17 lines
266 B
Plaintext
@file:Suppress("UNUSED_VARIABLE")
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
|
|
maven {
|
|
url = uri("https://maven.kr328.app")
|
|
}
|
|
}
|
|
}
|
|
|
|
task("clean", type = Delete::class) {
|
|
delete(rootProject.buildDir)
|
|
}
|