Add CommitHash to Version Name :prayge: (#307)
This commit is contained in:
parent
0d8a82568a
commit
86427a4c3c
1 changed files with 5 additions and 1 deletions
|
@ -6,6 +6,10 @@ plugins {
|
||||||
id 'com.google.devtools.ksp'
|
id 'com.google.devtools.ksp'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def gitCommitHash = providers.exec {
|
||||||
|
commandLine("git", "rev-parse", "--verify", "--short", "HEAD")
|
||||||
|
}.standardOutput.asText.get().trim()
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdk 34
|
compileSdk 34
|
||||||
|
|
||||||
|
@ -38,7 +42,7 @@ android {
|
||||||
buildTypes {
|
buildTypes {
|
||||||
alpha {
|
alpha {
|
||||||
applicationIdSuffix ".beta" // keep as beta by popular request
|
applicationIdSuffix ".beta" // keep as beta by popular request
|
||||||
versionNameSuffix "-alpha01"
|
versionNameSuffix "-alpha01-" + gitCommitHash
|
||||||
manifestPlaceholders.icon_placeholder = "@mipmap/ic_launcher_alpha"
|
manifestPlaceholders.icon_placeholder = "@mipmap/ic_launcher_alpha"
|
||||||
manifestPlaceholders.icon_placeholder_round = "@mipmap/ic_launcher_alpha_round"
|
manifestPlaceholders.icon_placeholder_round = "@mipmap/ic_launcher_alpha_round"
|
||||||
debuggable System.getenv("CI") == null
|
debuggable System.getenv("CI") == null
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue