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

android {
    buildToolsVersion "26.0.0"
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    compileSdkVersion 26
    dataBinding {
        enabled true
    }
    defaultConfig {
        applicationId "com.wireguard.android"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 100
        versionName "0.1.0"
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
}