Increased android client build number to 100

We need to be able to release a few 2.0 builds before this master
build will be ready.
This commit is contained in:
akallabeth 2020-05-07 16:35:12 +02:00
parent daf4e11324
commit 37344f443e
3 changed files with 4 additions and 2 deletions

View File

@ -9,7 +9,7 @@ android {
minSdkVersion 21
targetSdkVersion 28
vectorDrawables.useSupportLibrary = true
versionCode = 15
versionCode = rootProject.ext.versionCode
versionName = rootProject.ext.versionName
}

View File

@ -29,9 +29,11 @@ def getVersionName = { ->
ext {
versionName = properties.get('VERSION_NAME', getVersionName())
versionCode = properties.get('VERSION_CODE', 100)
println '----------------- Project configuration -------------------'
println 'VERSION_NAME: ' + versionName
println 'VERSION_CODE: ' + versionCode
println 'RELEASE_STORE_FILE: '+ RELEASE_STORE_FILE
println 'RELEASE_KEY_ALIAS: '+ RELEASE_KEY_ALIAS
println '-----------------------------------------------------------'

View File

@ -8,7 +8,7 @@ android {
minSdkVersion 21
targetSdkVersion 28
vectorDrawables.useSupportLibrary = true
versionCode = 15
versionCode = rootProject.ext.versionCode
versionName = rootProject.ext.versionName
}