Removed white spaces from version name as this causes errors with dependency resolution in fints4kRest
This commit is contained in:
parent
af950ce855
commit
cb1dda2049
|
@ -1,6 +1,6 @@
|
|||
// TODO: move to versions.gradle
|
||||
ext {
|
||||
appVersionName = '1.0.0 Alpha 9'
|
||||
appVersionName = '1.0.0-Alpha-9'
|
||||
|
||||
appVersionCode = 9
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ android {
|
|||
minSdkVersion androidMinSdkVersion
|
||||
targetSdkVersion androidTargetSdkVersion
|
||||
|
||||
versionName version
|
||||
versionName version.replace("-", " ")
|
||||
versionCode appVersionCode
|
||||
|
||||
multiDexEnabled true
|
||||
|
|
Loading…
Reference in New Issue