Skip to content

Commit

Permalink
Reproducible build: use a proper file name for the apk.
Browse files Browse the repository at this point in the history
Part of #418.
  • Loading branch information
dennisguse committed Dec 25, 2024
1 parent b43dfd0 commit 4573273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ android {

variant.outputs.configureEach {
if (variant.buildType.name == 'reproducible') {
outputFileName = '${applicationId}_${variant.buildType.name}_${variant.versionName}.apk'
outputFileName = "${applicationId}_${variant.buildType.name}_${variant.versionName}.apk"
} else {
outputFileName = '${applicationId}_${variant.buildType.name}_${variant.versionCode}.apk'
outputFileName = "${applicationId}_${variant.buildType.name}_${variant.versionCode}.apk"
}

if (variant.buildType.name == 'nightly') {
Expand Down

0 comments on commit 4573273

Please sign in to comment.