Skip to content

Commit 75950da

Browse files
committed
build: renombrar APK de salida a helm-{version}-{buildType}.apk
1 parent f70616e commit 75950da

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

app/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ android {
2828
}
2929
}
3030

31+
applicationVariants.all {
32+
val variant = this
33+
outputs.all {
34+
(this as com.android.build.gradle.internal.api.BaseVariantOutputImpl).outputFileName =
35+
"helm-${variant.versionName}-${variant.buildType.name}.apk"
36+
}
37+
}
38+
3139
buildTypes {
3240
debug {
3341
// No abiFilter — all ABIs supported so the emulator (x86_64) works

0 commit comments

Comments
 (0)