Skip to content

Commit

Permalink
build: mod versionNameSuffix
Browse files Browse the repository at this point in the history
  • Loading branch information
aistra0528 authored Jan 11, 2025
1 parent f8e463f commit d2b3d41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ android {
buildTypes {
debug {
applicationIdSuffix = ".debug"
versionNameSuffix = ".$commitShort"
versionNameSuffix = "-g$commitShort"
}
release {
isMinifyEnabled = true
isShrinkResources = true
versionNameSuffix = ".$commitShort"
versionNameSuffix = "-g$commitShort"
signingConfig = if (signingProps.exists()) {
val props = `java.util`.Properties().apply { load(signingProps.reader()) }
signingConfigs.create("release") {
Expand Down Expand Up @@ -104,4 +104,4 @@ dependencies {
implementation(libs.commons.text)
implementation(libs.kotlinx.coroutines.android)
implementation(libs.hiddenapibypass)
}
}

0 comments on commit d2b3d41

Please sign in to comment.