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-04-18 22:38:41 +02:00
|
|
|
agpVersion = '3.6.3'
|
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-03-30 07:15:49 +02:00
|
|
|
coreKtxVersion = '1.2.0'
|
|
|
|
coroutinesVersion = '1.3.5'
|
|
|
|
eddsaVersion = '0.3.0'
|
2020-04-01 20:47:10 +02:00
|
|
|
fragmentVersion = '1.2.4'
|
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-07 02:24:08 +02:00
|
|
|
materialComponentsVersion = '1.2.0-alpha05'
|
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-03-27 20:20:51 +01:00
|
|
|
threetenabpVersion = '1.2.3'
|
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-03-10 08:15:06 +01:00
|
|
|
gradleVersion = "6.2.2"
|
2019-09-27 09:29:40 +02:00
|
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
|
|
}
|
|
|
|
}
|
2020-03-10 04:54:27 +01:00
|
|
|
|
2020-03-10 08:15:06 +01:00
|
|
|
apply from: "version.gradle"
|