1
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-11-25 19:37:20 +01:00

Allow numbers and uppercase letters in app package id

This commit is contained in:
Stypox 2020-09-26 22:32:11 +02:00
parent e0f02d4080
commit b53d5d8c00
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23

View File

@ -33,7 +33,7 @@ android {
// suffix the app id and the app name with git branch name // suffix the app id and the app name with git branch name
def workingBranch = getGitWorkingBranch() def workingBranch = getGitWorkingBranch()
def normalizedWorkingBranch = workingBranch.replaceAll("[^A-Za-z]+", "").toLowerCase() def normalizedWorkingBranch = workingBranch.replaceFirst("^[^A-Za-z]+", "").replaceAll("[^0-9A-Za-z]+", "")
if (normalizedWorkingBranch.isEmpty() || workingBranch == "master" || workingBranch == "dev") { if (normalizedWorkingBranch.isEmpty() || workingBranch == "master" || workingBranch == "dev") {
// default values when branch name could not be determined or is master or dev // default values when branch name could not be determined or is master or dev
applicationIdSuffix ".debug" applicationIdSuffix ".debug"