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
|
// TODO: move to versions.gradle
|
||||||
ext {
|
ext {
|
||||||
appVersionName = '1.0.0 Alpha 9'
|
appVersionName = '1.0.0-Alpha-9'
|
||||||
|
|
||||||
appVersionCode = 9
|
appVersionCode = 9
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ android {
|
||||||
minSdkVersion androidMinSdkVersion
|
minSdkVersion androidMinSdkVersion
|
||||||
targetSdkVersion androidTargetSdkVersion
|
targetSdkVersion androidTargetSdkVersion
|
||||||
|
|
||||||
versionName version
|
versionName version.replace("-", " ")
|
||||||
versionCode appVersionCode
|
versionCode appVersionCode
|
||||||
|
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
|
|
Loading…
Reference in New Issue