summaryrefslogtreecommitdiff
path: root/android/testData/gradle/Compatibility.gradle
blob: f0d0abc9b4de56a180c7b088f5007f7e4fa6d902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
apply plugin: 'com.android.application'

android {
    compileSdkVersion 19
    buildToolsVersion "19.0.0"

    defaultConfig {
        minSdkVersion 7
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
}

dependencies {
    compile <error descr="This support library should not use a lower version (18) than the targetSdkVersion (19)">'com.android.support:support-v4:18.0.0'</error>

    // Suppressed:
    //noinspection GradleCompatible
    compile 'com.android.support:support-v4:18.0.0'
}