Using now appVersionName and appVersionCode from top build.gradle

This commit is contained in:
dankl 2019-10-30 22:31:53 +01:00 committed by dankito
parent c5158fd2fa
commit 6d47b16ed3
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,9 @@
// TODO: move to versions.gradle
ext {
appVersionName = '1.0.0-SNAPSHOT'
appVersionName = '0.1.0-SNAPSHOT'
appVersionCode = 1
kotlinVersion = '1.3.41'

View File

@ -10,8 +10,8 @@ android {
applicationId "net.dankito.banking.fints4java.android"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
versionCode appVersionCode
versionName appVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}