Skip to content

Commit c82704c

Browse files
committed
build: add git hash / count into version name
Signed-off-by: Art_Chen <[email protected]>
1 parent b172861 commit c82704c

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

app/build.gradle.kts

+37
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2+
import java.io.*
23

34
plugins {
45
alias(libs.plugins.agp.app)
@@ -15,6 +16,33 @@ apksign {
1516
keyPasswordProperty = "KEY_PASSWORD"
1617
}
1718

19+
val getGitCommitCount: () -> Int = {
20+
val output = ByteArrayOutputStream()
21+
ProcessBuilder("git", "rev-list", "--count", "HEAD").start().apply {
22+
inputStream.copyTo(output)
23+
waitFor()
24+
}
25+
output.toString().trim().toInt()
26+
}
27+
28+
val getVersionCode: () -> Int = {
29+
val commitCount = getGitCommitCount()
30+
val major = 5
31+
major + commitCount
32+
}
33+
34+
fun getGitHash(): String {
35+
val process = ProcessBuilder("git", "rev-parse", "--short", "HEAD").start()
36+
val output = process.inputStream.bufferedReader().use { it.readText().trim() }
37+
return output
38+
}
39+
40+
fun getGitHashLong(): String {
41+
val process = ProcessBuilder("git", "rev-parse", "HEAD").start()
42+
val output = process.inputStream.bufferedReader().use { it.readText().trim() }
43+
return output
44+
}
45+
1846
android {
1947
compileSdk = 35
2048

@@ -26,25 +54,34 @@ android {
2654
versionName = "2.7.0-U-HyperOS"
2755
}
2856

57+
val gitCode = getVersionCode()
58+
val gitHash = getGitHash()
2959
buildTypes {
3060
debug {
3161
isDebuggable = true
3262
isMinifyEnabled = false
3363
isShrinkResources = false
64+
buildConfigField("String", "GIT_HASH", "\"$gitHash\"")
65+
buildConfigField("String", "GIT_CODE", "\"$gitCode\"")
3466
proguardFiles(
3567
getDefaultProguardFile("proguard-android-optimize.txt"),
3668
"proguard-rules.pro"
3769
)
70+
71+
versionNameSuffix = "_${gitHash}_r${gitCode}"
3872
}
3973
release {
4074
isMinifyEnabled = true
4175
isShrinkResources = true
4276
isDebuggable = false
4377
multiDexEnabled = true
78+
buildConfigField("String", "GIT_HASH", "\"$gitHash\"")
79+
buildConfigField("String", "GIT_CODE", "\"$gitCode\"")
4480
proguardFiles(
4581
getDefaultProguardFile("proguard-android-optimize.txt"),
4682
"proguard-rules.pro"
4783
)
84+
versionNameSuffix = "_${gitHash}_r${gitCode}"
4885
}
4986
}
5087

0 commit comments

Comments
 (0)