summaryrefslogtreecommitdiff
path: root/taskerlocaleapi/build.gradle
blob: 772de1879047fa7bc8c503e9aa4626b44130cddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
apply plugin: 'com.android.library'

android {
    compileSdkVersion 19
    buildToolsVersion '25.0.0'

    defaultConfig {
        minSdkVersion 3
        targetSdkVersion 17
    }

    lintOptions {
         abortOnError false
    }

    buildTypes {
        release {
            minifyEnabled  false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}