summaryrefslogtreecommitdiff
path: root/android/testData/gradle/MinSdkAssignment.gradle
blob: 1a60a9503ce182df137b0f4c1dfb51341261de19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
apply plugin: 'com.android.application'

android {
    compileSdkVersion=19
    buildToolsVersion = "19.0.0"

    defaultConfig {
        minSdkVersion<error descr="Do not use assignment with the minSdkVersion property (remove the '=')"> = </error>7
        targetSdkVersion<error descr="Do not use assignment with the targetSdkVersion property (remove the '=')">=</error>19
        versionCode = 1
        versionName "1.0"
    }
}