2017-07-29 06:10:37 +02:00
|
|
|
buildscript {
|
2020-03-09 14:30:14 +01:00
|
|
|
ext {
|
2020-10-02 00:58:25 +02:00
|
|
|
activityVersion = '1.2.0-beta01'
|
2020-10-13 10:23:10 +02:00
|
|
|
agpVersion = '4.1.0'
|
2020-03-09 14:30:14 +01:00
|
|
|
annotationsVersion = '1.1.0'
|
2020-08-22 21:13:25 +02:00
|
|
|
appcompatVersion = '1.2.0'
|
2020-09-13 14:21:30 +02:00
|
|
|
bintrayPluginVersion = '1.8.5'
|
2020-10-02 11:35:53 +02:00
|
|
|
biometricVersion = '1.1.0-beta01'
|
2020-03-09 14:30:14 +01:00
|
|
|
collectionVersion = '1.1.0'
|
2020-10-07 10:44:38 +02:00
|
|
|
constraintLayoutVersion = '2.0.2'
|
2020-03-09 14:30:14 +01:00
|
|
|
coordinatorLayoutVersion = '1.1.0'
|
2020-08-22 21:36:22 +02:00
|
|
|
coreKtxVersion = '1.3.1'
|
2020-08-22 21:13:14 +02:00
|
|
|
coroutinesVersion = '1.3.9'
|
2020-09-18 14:03:48 +02:00
|
|
|
datastoreVersion = '1.0.0-alpha01'
|
2020-09-15 23:30:20 +02:00
|
|
|
desugarVersion = '1.0.10'
|
2020-10-02 00:58:25 +02:00
|
|
|
fragmentVersion = '1.3.0-beta01'
|
2020-03-09 14:30:14 +01:00
|
|
|
jsr305Version = '3.0.2'
|
2020-03-30 07:15:49 +02:00
|
|
|
junitVersion = '4.13'
|
2020-09-13 14:21:30 +02:00
|
|
|
kotlinVersion = '1.4.10'
|
2020-09-15 23:30:20 +02:00
|
|
|
lifecycleRuntimeKtxVersion = '2.3.0-alpha07'
|
2020-10-05 21:46:03 +02:00
|
|
|
materialComponentsVersion = '1.3.0-alpha03'
|
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-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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-13 14:21:30 +02:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-29 06:10:37 +02:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2019-09-27 09:29:40 +02:00
|
|
|
|
|
|
|
tasks {
|
|
|
|
wrapper {
|
2020-08-30 19:53:04 +02:00
|
|
|
gradleVersion = "6.6.1"
|
2019-09-27 09:29:40 +02:00
|
|
|
distributionType = Wrapper.DistributionType.ALL
|
2020-08-30 19:53:04 +02:00
|
|
|
distributionSha256Sum = "11657af6356b7587bfb37287b5992e94a9686d5c8a0a1b60b87b9928a2decde5"
|
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"
|