YetAnotherCallBlocker/build.gradle

27 lines
431 B
Groovy

buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
wrapper {
gradleVersion = "6.5"
distributionType = Wrapper.DistributionType.ALL
}