Using now appVersionName and appVersionCode from top build.gradle
This commit is contained in:
parent
c5158fd2fa
commit
6d47b16ed3
|
@ -1,7 +1,9 @@
|
||||||
|
|
||||||
// TODO: move to versions.gradle
|
// TODO: move to versions.gradle
|
||||||
ext {
|
ext {
|
||||||
appVersionName = '1.0.0-SNAPSHOT'
|
appVersionName = '0.1.0-SNAPSHOT'
|
||||||
|
|
||||||
|
appVersionCode = 1
|
||||||
|
|
||||||
kotlinVersion = '1.3.41'
|
kotlinVersion = '1.3.41'
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,8 @@ android {
|
||||||
applicationId "net.dankito.banking.fints4java.android"
|
applicationId "net.dankito.banking.fints4java.android"
|
||||||
minSdkVersion 15
|
minSdkVersion 15
|
||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
versionCode 1
|
versionCode appVersionCode
|
||||||
versionName "1.0"
|
versionName appVersionName
|
||||||
|
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue