mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 18:53:16 +02:00
Set android versionCode and versionName through gradle parameter RELEASE_NUMBER
This commit is contained in:
parent
ffb9a47be0
commit
395767ed80
1 changed files with 5 additions and 2 deletions
|
@ -4,12 +4,15 @@ android {
|
|||
compileSdkVersion 26
|
||||
//buildToolsVersion '27.0.3'
|
||||
|
||||
def appVersionCode = Integer.valueOf(RELEASE_NUMBER ?: 1)
|
||||
def appVersionName = RELEASE_NUMBER ?: "1.0"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "io.highfidelity.hifiinterface"
|
||||
minSdkVersion 24
|
||||
targetSdkVersion 26
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
versionCode appVersionCode
|
||||
versionName appVersionName
|
||||
ndk { abiFilters 'arm64-v8a' }
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
|
|
Loading…
Reference in a new issue