From f97549073e1d0933c4c59e614dcab938e9a0c2c2 Mon Sep 17 00:00:00 2001 From: SpiritCroc Date: Sat, 18 Sep 2021 20:38:14 +0200 Subject: [PATCH] Increment version Change-Id: If37db85f2d3e0affd140961f9efc87c8440c5033 --- .../metadata/android/en-US/changelogs/40100660.txt | 4 ++++ vector/build.gradle | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/40100660.txt diff --git a/fastlane/metadata/android/en-US/changelogs/40100660.txt b/fastlane/metadata/android/en-US/changelogs/40100660.txt new file mode 100644 index 0000000000..9fe60bc530 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40100660.txt @@ -0,0 +1,4 @@ +- Add setting to use UnifiedPush endpoint as gateway directly +- Setting to force UnifiedPush re-registration +- Add option to force background sync in addition to push +- Fix installation on some old devices diff --git a/vector/build.gradle b/vector/build.gradle index 52771f37d5..15da5efc11 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -16,7 +16,7 @@ ext.versionMajor = 1 ext.versionMinor = 2 ext.versionPatch = 2 -ext.scVersion = 43 +ext.scVersion = 44 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 40100650 + versionCode 40100660 // Required for sonar analysis - versionName "1.2.2.sc43" + versionName "1.2.2.sc44" buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\"" resValue "string", "git_revision", "\"${gitRevision()}\"" @@ -266,7 +266,7 @@ android { dimension "store" isDefault = true - versionName "1.2.2.sc43" + versionName "1.2.2.sc44" resValue "bool", "isGplay", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true" @@ -277,7 +277,7 @@ android { fdroid { dimension "store" - versionName "1.2.2.sc43" + versionName "1.2.2.sc44" resValue "bool", "isGplay", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"