blob: e371f79d2aa4237b29e71f42ef26f2ee391b4b40 [file] [log] [blame]
plugins {
id("com.android.application")
}
fun getVersionName() {
"1.0"
}
fun 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>
}
}