wireguard-android/build.gradle
Harsh Shandilya a9f04c0bf4 Update AGP to 3.5.3
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2019-12-15 11:08:00 +05:30

28 lines
416 B
Groovy

allprojects {
repositories {
google()
jcenter()
}
}
buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
}
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
tasks {
wrapper {
gradleVersion = "6.0.1"
distributionType = Wrapper.DistributionType.ALL
}
}