feature/apk_versioning_mechanism #7

Merged
CiufudeanDani merged 12 commits from feature/apk_versioning_mechanism into develop 2022-03-22 13:19:48 +00:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit bac12825c9 - Show all commits

0
gradlew vendored Normal file → Executable file
View File

View File

@ -14,6 +14,11 @@ buildscript {
} }
} }
androidGitVersion {
codeFormat 'MNNBBBB'
format '%tag%%.count%'
hideBranches = ['develop']
}
android { android {
compileSdkVersion 31 compileSdkVersion 31
@ -25,6 +30,7 @@ android {
targetSdkVersion 31 targetSdkVersion 31
versionName androidGitVersion.name() versionName androidGitVersion.name()
versionCode androidGitVersion.code() versionCode androidGitVersion.code()
archivesBaseName = "SafeDispatchMobile_v.$versionName"
} }
buildTypes { buildTypes {