We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5523383 commit e1927d5Copy full SHA for e1927d5
1 file changed
app/build.gradle.kts
@@ -30,6 +30,17 @@ android {
30
}
31
32
33
+ applicationVariants.all {
34
+ outputs.all {
35
+ var apkName = "IntervalTimer-" + defaultConfig.versionName;
36
+ if (name == "debug") {
37
+ apkName += "-${name}"
38
+ }
39
+ this as com.android.build.gradle.internal.api.ApkVariantOutputImpl
40
+ outputFileName = apkName + ".apk"
41
42
43
+
44
buildTypes {
45
release {
46
isMinifyEnabled = true
0 commit comments