aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/build.gradle
blob: e1b5b1a18c9abdcebdbabbdd16d6054cac44f3d6 (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
56
57
58
59
allprojects {
    repositories {
        google()
        jcenter()
    }
}

buildscript {
    ext {
        agpVersion = '4.0.0'
        annotationsVersion = '1.1.0'
        appcompatVersion = '1.1.0'
        bintrayPluginVersion = '1.8.4'
        biometricVersion = '1.0.1'
        collectionVersion = '1.1.0'
        constraintLayoutVersion = '1.1.3'
        coordinatorLayoutVersion = '1.1.0'
        coreKtxVersion = '1.2.0'
        coroutinesVersion = '1.3.5'
        eddsaVersion = '0.3.0'
        fragmentVersion = '1.2.4'
        jsr305Version = '3.0.2'
        junitVersion = '4.13'
        kotlinVersion = '1.3.72'
        materialComponentsVersion = '1.2.0-alpha06'
        mavenPluginVersion = '2.1'
        preferenceVersion = '1.1.1'
        streamsupportVersion = '1.7.2'
        threetenabpVersion = '1.2.4'
        zxingEmbeddedVersion = '3.6.0'

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

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

tasks {
    wrapper {
        gradleVersion = "6.4"
        distributionType = Wrapper.DistributionType.ALL
        distributionSha256Sum = "d08f7e24d061910382c2fda9915e6ed42dd1480ae2e99211f92c70190cb697e0"
    }
}

apply from: "version.gradle"