wireguard-android/build.gradle
Harsh Shandilya 8078347880 Upgrade AGP and Gradle
If anybody has a problem with missing or mismatched NDK, run this command to install the right version

$ANDROID_SDK_ROOT/tools/bin/sdkmanager 'ndk;20.0.5594570'

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-02-25 08:29:53 +05:30

29 lines
485 B
Groovy

allprojects {
repositories {
google()
jcenter()
}
}
buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.6.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61'
}
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
tasks {
wrapper {
gradleVersion = "6.2.1"
distributionType = Wrapper.DistributionType.ALL
}
}