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

android {
    buildToolsVersion '27.0.2'
    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 100
        versionName '0.1.0'
    }
    externalNativeBuild {
        cmake {
            path 'tools/CMakeLists.txt'
        }
    }
}

dependencies {
    implementation 'com.getbase:floatingactionbutton:1.10.1'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
}