0
0
Fork 0
mirror of https://github.com/YTVanced/VancedManager synced 2024-11-25 20:55:12 +00:00
VancedManager/build.gradle.kts
2021-07-12 18:04:43 +04:00

23 lines
No EOL
442 B
Text

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.0.0-beta05")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Config.kotlinVersion}")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
task<Delete>("clean") {
delete(rootProject.buildDir)
}