aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/build.gradle
blob: f1d56c3ed9c7134ba1bdc5fd85b2b51e0182f607 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
buildscript {
    ext {
        activityVersion = '1.2.0-beta01'
        agpVersion = '4.1.0'
        annotationsVersion = '1.1.0'
        appcompatVersion = '1.2.0'
        biometricVersion = '1.1.0-beta01'
        collectionVersion = '1.1.0'
        constraintLayoutVersion = '2.0.2'
        coordinatorLayoutVersion = '1.1.0'
        coreKtxVersion = '1.3.1'
        coroutinesVersion = '1.3.9'
        datastoreVersion = '1.0.0-alpha01'
        desugarVersion = '1.0.10'
        fragmentVersion = '1.3.0-beta01'
        jsr305Version = '3.0.2'
        junitVersion = '4.13'
        kotlinVersion = '1.4.10'
        lifecycleRuntimeKtxVersion = '2.3.0-alpha07'
        materialComponentsVersion = '1.3.0-alpha03'
        preferenceVersion = '1.1.1'
        zxingEmbeddedVersion = '3.6.0'

        groupName = 'com.wireguard.android'
    }
    dependencies {
        classpath "com.android.tools.build:gradle:$agpVersion"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
    }
    repositories {
        google()
        jcenter()
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

tasks {
    wrapper {
        gradleVersion = "6.7"
        distributionType = Wrapper.DistributionType.ALL
        distributionSha256Sum = "0080de8491f0918e4f529a6db6820fa0b9e818ee2386117f4394f95feb1d5583"
    }
}

apply from: "version.gradle"