Version++

Also add comment about the new versioning strategy
This commit is contained in:
Benoit Marty 2022-01-11 17:42:54 +01:00
parent fef40cac96
commit 848a7f4062
2 changed files with 5 additions and 2 deletions

View File

@ -31,7 +31,7 @@ android {
// that the app's state is completely cleared between tests.
testInstrumentationRunnerArguments clearPackageData: 'true'
buildConfigField "String", "SDK_VERSION", "\"1.3.13\""
buildConfigField "String", "SDK_VERSION", "\"1.3.16\""
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
resValue "string", "git_sdk_revision", "\"${gitRevision()}\""

View File

@ -15,7 +15,10 @@ kapt {
// Note: 2 digits max for each value
ext.versionMajor = 1
ext.versionMinor = 3
ext.versionPatch = 13
// Note: even values are reserved for regular release, odd values for hotfix release.
// When creating a hotfix, you should decrease the value, since the current value
// is the value for the next regular release.
ext.versionPatch = 16
static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'