Merge pull request #3265 from TeamNewPipe/apk_base_name

Change APK base name depending on the branch name for debug builds
This commit is contained in:
Tobias Groza 2020-04-02 23:18:18 +02:00 committed by GitHub
commit dc6604bcda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -46,6 +46,7 @@ android {
} else {
applicationIdSuffix ".debug." + normalizedWorkingBranch
resValue "string", "app_name", "NewPipe " + workingBranch
archivesBaseName = 'NewPipe_' + normalizedWorkingBranch
}
}
}