打包的名字如 app.1.0.1_relase_201283893.apk
实现
配置安卓项目的中的build.gradle (android/app/build.gradle )
新增 android { 内
Dart
applicationVariants.all { variant ->
variant.outputs.all {
def appName = "拓车服管家" // 文件名
def version = variant.versionName // 版本号
def buildType = variant.name // 包类型,debug 还是 release
def createTime = new Date().format('MMddHHmm') // 打包时间 2021_09_25_16_45_52
if (buildType == "debug") {
outputFileName = "${appName}_${version}_${buildType}_${createTime}.apk"
}
if (buildType == "release") {
outputFileName = "${appName}_${version}_${buildType}_${createTime}.apk"
}
}
}