summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/noPngCrunch/build.gradle
blob: cddac223878b000248b1875eb3b5127c78ff63c7 (plain)
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
apply from: "../commonHeader.gradle"
buildscript { apply from: "../commonBuildScript.gradle" }

apply plugin: 'com.android.application'

android {
    namespace "com.android.tests.basic"
    compileSdkVersion rootProject.latestCompileSdk
    buildToolsVersion rootProject.buildToolsVersion

    aaptOptions {
        cruncherEnabled = false
    }

    defaultConfig {
        versionCode 12
        versionName "2.0"
        minSdkVersion 16
        //noinspection ExpiringTargetSdkVersion,ExpiredTargetSdkVersion
        targetSdkVersion 16
    }

    buildTypes {
        qa {
            initWith(release)
            debuggable true
            // crunchPngs false
        }
    }

    lintOptions.checkReleaseBuilds = false
}