mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2024-11-21 10:32:33 +01:00
Merge pull request #11656 from litetex/better-control-over-version
[Build] Make it possible control the version code and name
This commit is contained in:
commit
94f992a2e2
@ -20,8 +20,15 @@ android {
|
||||
resValue "string", "app_name", "NewPipe"
|
||||
minSdk 21
|
||||
targetSdk 33
|
||||
versionCode 999
|
||||
if (System.properties.containsKey('versionCodeOverride')) {
|
||||
versionCode System.getProperty('versionCodeOverride') as Integer
|
||||
} else {
|
||||
versionCode 999
|
||||
}
|
||||
versionName "0.27.2"
|
||||
if (System.properties.containsKey('versionNameSuffix')) {
|
||||
versionNameSuffix System.getProperty('versionNameSuffix')
|
||||
}
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user