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

android {
    compileSdkVersion 19
    buildToolsVersion "20.0.0"

    defaultConfig {
        applicationId "com.twofortyfouram.locale.api"
        minSdkVersion 3
        targetSdkVersion 17
    }

    lintOptions {
         abortOnError false
    }

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