mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-09 23:41:08 +01:00
Change versionPathc value by day date
This commit is contained in:
parent
5d41ab8807
commit
d04e132f6b
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
|
|||
|
||||
ext.versionMajor = 0
|
||||
ext.versionMinor = 65
|
||||
ext.versionPatch = 20211204
|
||||
ext.versionPatch = new Date().format("yyyyMMdd")
|
||||
ext.versionClassifier = null
|
||||
ext.isSnapshot = false
|
||||
ext.minimumSdkVersion = defaultMinSdkVersion
|
||||
|
@ -113,7 +113,7 @@ dependencies {
|
|||
}
|
||||
|
||||
private Integer generateVersionCode() {
|
||||
return ext.minimumSdkVersion * 10000000 + ext.versionMajor * 10000 + ext.versionMinor * 100 + ext.versionPatch
|
||||
return ext.minimumSdkVersion * 1000 + ext.versionMajor * 100 + ext.versionMinor
|
||||
}
|
||||
|
||||
private String generateVersionName() {
|
||||
|
|
Loading…
Reference in a new issue