blob: 5ee80126699c3fd08d4fffa08f6cd8e84f4a9fa8 [file] [log] [blame]
apply plugin: 'com.android.application'
def getVersionName() {
"1.0"
}
def getVersionCode() {
50
}
android {
compileSdkVersion 19
buildToolsVersion "19.0.0"
defaultConfig {
minSdkVersion 7
targetSdkVersion 17
<error descr="Bad method name: pick a unique method name which does not conflict with the implicit getters for the defaultConfig properties. For example, try using the prefix compute- instead of get-.">versionCode getVersionCode</error>
<error descr="Bad method name: pick a unique method name which does not conflict with the implicit getters for the defaultConfig properties. For example, try using the prefix compute- instead of get-.">versionName getVersionName</error>
}
}