Removed white spaces from version name as this causes errors with dependency resolution in fints4kRest

This commit is contained in:
dankito 2021-01-18 14:44:59 +01:00
parent af950ce855
commit cb1dda2049
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
// TODO: move to versions.gradle
ext {
appVersionName = '1.0.0 Alpha 9'
appVersionName = '1.0.0-Alpha-9'
appVersionCode = 9

View File

@ -23,7 +23,7 @@ android {
minSdkVersion androidMinSdkVersion
targetSdkVersion androidTargetSdkVersion
versionName version
versionName version.replace("-", " ")
versionCode appVersionCode
multiDexEnabled true