aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/build.gradle
blob: 18710cc069d79b22a245a200b2185d2672d1b7d7 (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
apply plugin: 'com.android.application'

android {
    buildToolsVersion '27.0.3'
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    compileSdkVersion 27
    dataBinding {
        enabled true
    }
    defaultConfig {
        applicationId 'com.wireguard.android'
        minSdkVersion 21
        targetSdkVersion 27
        versionCode 402
        versionName '0.4.0'
    }
    externalNativeBuild {
        cmake {
            path 'tools/CMakeLists.txt'
        }
    }
}

dependencies {
    annotationProcessor 'com.google.dagger:dagger-compiler:2.14.1'
    implementation 'com.android.databinding:library:1.3.3'
    implementation 'com.android.support:support-annotations:27.0.2'
    implementation 'com.commonsware.cwac:crossport:0.2.1'
    implementation 'com.getbase:floatingactionbutton:1.10.1'
    implementation 'com.google.dagger:dagger:2.14.1'
    implementation 'net.sourceforge.streamsupport:android-retrofuture:1.6.0'
    implementation 'net.sourceforge.streamsupport:android-retrostreams:1.6.0'
}

repositories {
    maven {
        url "https://s3.amazonaws.com/repo.commonsware.com"
    }
}