Increment version
Change-Id: I70c18491f03854898fa9989add666530dbc0b668
This commit is contained in:
parent
ddceeaff0d
commit
c38ece586e
|
@ -0,0 +1,4 @@
|
|||
- Update codebase to Element v1.2.2
|
||||
- Improve power-level based name-color updating
|
||||
- Hide secure backup "backing up keys" banner
|
||||
- Drawer unread count badge: use total count
|
|
@ -16,7 +16,7 @@ ext.versionMajor = 1
|
|||
ext.versionMinor = 2
|
||||
ext.versionPatch = 2
|
||||
|
||||
ext.scVersion = 42
|
||||
ext.scVersion = 43
|
||||
|
||||
static def getGitTimestamp() {
|
||||
def cmd = 'git show -s --format=%ct'
|
||||
|
@ -122,10 +122,10 @@ android {
|
|||
|
||||
// `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode.
|
||||
// Other branches (main, features, etc.) will have version code based on application version.
|
||||
versionCode 40100640
|
||||
versionCode 40100650
|
||||
|
||||
// Required for sonar analysis
|
||||
versionName "1.2.0.sc42"
|
||||
versionName "1.2.2.sc43"
|
||||
|
||||
buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\""
|
||||
resValue "string", "git_revision", "\"${gitRevision()}\""
|
||||
|
@ -266,7 +266,7 @@ android {
|
|||
dimension "store"
|
||||
isDefault = true
|
||||
|
||||
versionName "1.2.0.sc42"
|
||||
versionName "1.2.2.sc43"
|
||||
|
||||
resValue "bool", "isGplay", "true"
|
||||
buildConfigField "boolean", "ALLOW_FCM_USE", "true"
|
||||
|
@ -277,7 +277,7 @@ android {
|
|||
fdroid {
|
||||
dimension "store"
|
||||
|
||||
versionName "1.2.0.sc42"
|
||||
versionName "1.2.2.sc43"
|
||||
|
||||
resValue "bool", "isGplay", "false"
|
||||
buildConfigField "boolean", "ALLOW_FCM_USE", "false"
|
||||
|
|
Loading…
Reference in New Issue