2020-04-01 01:46:00 +02:00
|
|
|
|
2017-07-29 06:10:37 +02:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2017-11-08 05:52:50 +01:00
|
|
|
google()
|
2017-07-29 06:10:37 +02:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
2020-03-09 14:30:14 +01:00
|
|
|
ext {
|
2020-07-23 16:04:22 +02:00
|
|
|
agpVersion = '4.0.1'
|
2020-03-09 14:30:14 +01:00
|
|
|
annotationsVersion = '1.1.0'
|
|
|
|
appcompatVersion = '1.1.0'
|
2020-03-30 07:15:49 +02:00
|
|
|
bintrayPluginVersion = '1.8.4'
|
|
|
|
biometricVersion = '1.0.1'
|
2020-03-09 14:30:14 +01:00
|
|
|
collectionVersion = '1.1.0'
|
|
|
|
constraintLayoutVersion = '1.1.3'
|
|
|
|
coordinatorLayoutVersion = '1.1.0'
|
2020-06-24 22:00:00 +02:00
|
|
|
coreKtxVersion = '1.3.0'
|
|
|
|
coroutinesVersion = '1.3.7'
|
2020-03-30 07:15:49 +02:00
|
|
|
eddsaVersion = '0.3.0'
|
2020-06-24 22:00:00 +02:00
|
|
|
fragmentVersion = '1.2.5'
|
2020-03-09 14:30:14 +01:00
|
|
|
jsr305Version = '3.0.2'
|
2020-03-30 07:15:49 +02:00
|
|
|
junitVersion = '4.13'
|
2020-04-18 22:38:41 +02:00
|
|
|
kotlinVersion = '1.3.72'
|
2020-04-30 14:51:31 +02:00
|
|
|
materialComponentsVersion = '1.2.0-alpha06'
|
2020-03-30 07:15:49 +02:00
|
|
|
mavenPluginVersion = '2.1'
|
2020-04-18 22:38:41 +02:00
|
|
|
preferenceVersion = '1.1.1'
|
2020-03-28 14:51:53 +01:00
|
|
|
streamsupportVersion = '1.7.2'
|
2020-04-24 16:02:36 +02:00
|
|
|
threetenabpVersion = '1.2.4'
|
2020-03-09 14:30:14 +01:00
|
|
|
zxingEmbeddedVersion = '3.6.0'
|
2020-03-10 15:58:29 +01:00
|
|
|
|
|
|
|
groupName = 'com.wireguard.android'
|
2020-03-09 14:30:14 +01:00
|
|
|
}
|
2017-07-29 06:10:37 +02:00
|
|
|
dependencies {
|
2020-03-09 14:30:14 +01:00
|
|
|
classpath "com.android.tools.build:gradle:$agpVersion"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
2020-03-10 07:21:51 +01:00
|
|
|
classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenPluginVersion"
|
|
|
|
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayPluginVersion"
|
2017-07-29 06:10:37 +02:00
|
|
|
}
|
|
|
|
repositories {
|
2017-11-08 05:52:50 +01:00
|
|
|
google()
|
2017-07-29 06:10:37 +02:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2019-09-27 09:29:40 +02:00
|
|
|
|
|
|
|
tasks {
|
|
|
|
wrapper {
|
2020-08-12 09:58:00 +02:00
|
|
|
gradleVersion = "6.6"
|
2019-09-27 09:29:40 +02:00
|
|
|
distributionType = Wrapper.DistributionType.ALL
|
2020-08-12 09:58:00 +02:00
|
|
|
distributionSha256Sum = "83fa7c3e5ab84c3c5c4a04fb16947338209efa9aab1f6bf09a5d0e3d2ed87742"
|
2019-09-27 09:29:40 +02:00
|
|
|
}
|
|
|
|
}
|
2020-03-10 04:54:27 +01:00
|
|
|
|
2020-03-10 08:15:06 +01:00
|
|
|
apply from: "version.gradle"
|