mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-21 12:56:10 +03: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)
|
||
|
}
|