1
1
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
+ import java.io.*
2
3
3
4
plugins {
4
5
alias(libs.plugins.agp.app)
@@ -15,6 +16,33 @@ apksign {
15
16
keyPasswordProperty = " KEY_PASSWORD"
16
17
}
17
18
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
+
18
46
android {
19
47
compileSdk = 35
20
48
@@ -26,25 +54,34 @@ android {
26
54
versionName = " 2.7.0-U-HyperOS"
27
55
}
28
56
57
+ val gitCode = getVersionCode()
58
+ val gitHash = getGitHash()
29
59
buildTypes {
30
60
debug {
31
61
isDebuggable = true
32
62
isMinifyEnabled = false
33
63
isShrinkResources = false
64
+ buildConfigField(" String" , " GIT_HASH" , " \" $gitHash \" " )
65
+ buildConfigField(" String" , " GIT_CODE" , " \" $gitCode \" " )
34
66
proguardFiles(
35
67
getDefaultProguardFile(" proguard-android-optimize.txt" ),
36
68
" proguard-rules.pro"
37
69
)
70
+
71
+ versionNameSuffix = " _${gitHash} _r${gitCode} "
38
72
}
39
73
release {
40
74
isMinifyEnabled = true
41
75
isShrinkResources = true
42
76
isDebuggable = false
43
77
multiDexEnabled = true
78
+ buildConfigField(" String" , " GIT_HASH" , " \" $gitHash \" " )
79
+ buildConfigField(" String" , " GIT_CODE" , " \" $gitCode \" " )
44
80
proguardFiles(
45
81
getDefaultProguardFile(" proguard-android-optimize.txt" ),
46
82
" proguard-rules.pro"
47
83
)
84
+ versionNameSuffix = " _${gitHash} _r${gitCode} "
48
85
}
49
86
}
50
87
0 commit comments