We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97d85bd commit 96a5afbCopy full SHA for 96a5afb
android/app/build.gradle
@@ -107,7 +107,7 @@ android {
107
applicationVariants.all { variant ->
108
variant.outputs.each { output ->
109
if (variant.buildType.name == 'debug') {
110
- def fileName = "SwiftChat-Debug.apk"
+ def fileName = "SwiftChat-Debug-v${versionName}.apk"
111
output.outputFileName = fileName
112
}
113
@@ -122,7 +122,7 @@ android {
122
123
124
if ( variant.buildType.name == 'release') {
125
- def fileName = "SwiftChat-Release.apk"
+ def fileName = "SwiftChat-Release-v${versionName}.apk"
126
127
128
0 commit comments