fix(android): versionName/versionCode injection
arcad/arcast/pipeline/head This commit looks good
Details
arcad/arcast/pipeline/head This commit looks good
Details
This commit is contained in:
parent
7c75b478a3
commit
384b351fbc
|
@ -3,13 +3,8 @@ plugins {
|
|||
id 'org.jetbrains.kotlin.android'
|
||||
}
|
||||
|
||||
def versionCode() {
|
||||
return System.env.VERSION_CODE ? System.env.VERSION_CODE.toInteger() : 0
|
||||
}
|
||||
|
||||
def versionName() {
|
||||
return System.env.VERSION_NAME ? System.env.VERSION_NAME : "0.0.0"
|
||||
}
|
||||
def appVersionCode = Integer.valueOf(System.env.VERSION_CODE ?: 1)
|
||||
def appVersionName = System.env.VERSION_NAME ?: "0.0.0"
|
||||
|
||||
android {
|
||||
namespace 'com.cadoles.arcast_player'
|
||||
|
@ -19,8 +14,8 @@ android {
|
|||
applicationId "com.cadoles.arcast_player"
|
||||
minSdk 24
|
||||
targetSdk 34
|
||||
versionCode versionCode()
|
||||
versionName versionName()
|
||||
versionCode appVersionCode
|
||||
versionName appVersionName
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
vectorDrawables {
|
||||
|
|
Loading…
Reference in New Issue