军测更新common

增加独有三四等限差
main_modify
huangwei 10 months ago
parent deadaddc14
commit 440b773823
  1. 13
      app/build.gradle
  2. 2
      control_common

@ -3,6 +3,8 @@ import com.bingce.App
import com.bingce.Libs
import com.bingce.ModuleName
import java.text.SimpleDateFormat
apply plugin: 'com.android.application'
apply plugin: 'org.jetbrains.kotlin.android'
apply plugin: 'kotlin-kapt'
@ -16,8 +18,11 @@ android {
namespace App.ControlNetwork.applicationId
defaultConfig {
versionName "1.0.1"
versionCode 1
def currentDate = new SimpleDateFormat(".yy.M.d").format(new Date())
def code = new SimpleDateFormat("yyyyMMdd").format(new Date()).toInteger()
versionName "1.1${currentDate}"
versionCode code
applicationId "com.bingce.controlnetwork.pla"
minSdkVersion AndroidSdk.minSdkVersion
targetSdkVersion AndroidSdk.targetSdkVersion
@ -61,9 +66,9 @@ android {
applicationVariants.all {
variant ->
variant.outputs.all {
def createTime = new Date().format("YYYY-MM-dd-HH-mm-ss", TimeZone.getTimeZone("GMT+08:00"))
def createTime = new Date().format("HH-mm-ss", TimeZone.getTimeZone("GMT+08:00"))
// app包名称
outputFileName = "app_v" + defaultConfig.versionName + "_" + createTime + ".apk"
outputFileName = "pla_v" + defaultConfig.versionName + "_" + createTime + ".apk"
}
}
}

@ -1 +1 @@
Subproject commit 2c900a8568c9ff845af01c2f6113c531119b4aee
Subproject commit 50dbeba04ff4e7349013d00fb8e1015989f1d682
Loading…
Cancel
Save