0
0
Fork 0
mirror of https://github.com/YTVanced/VancedManager synced 2024-12-04 00:37:26 +00:00
VancedManager/build.gradle.kts
2021-07-20 23:22:04 +04:00

23 lines
No EOL
440 B
Text

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