Update build.gradle
This commit is contained in:
parent
30ac8115b0
commit
9f3fde5a17
1 changed files with 2 additions and 2 deletions
|
@ -52,10 +52,10 @@ android {
|
|||
minSdkVersion System.getenv("MIN_SDK_VERSION") ? System.getenv("MIN_SDK_VERSION").toInteger() :
|
||||
(analytics ? 15 : 14)
|
||||
targetSdkVersion 26
|
||||
versionCode 320
|
||||
versionCode 330
|
||||
versionCode System.getenv("APK_NUMBER_VERSION") ? System.getenv("APK_NUMBER_VERSION").toInteger() : versionCode
|
||||
multiDexEnabled true
|
||||
versionName "3.2.0"
|
||||
versionName "3.3.0"
|
||||
versionName System.getenv("APK_VERSION")? System.getenv("APK_VERSION").toString(): versionName
|
||||
versionName System.getenv("APK_VERSION_SUFFIX")? versionName + System.getenv("APK_VERSION_SUFFIX").toString(): versionName
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue