87

我正在使用 Android Studio,我需要versionNameSuffix在我的 Android build.gradle文件上附加一个后缀。我有三种不同的构建类型,我只需要将日期时间附加到我的“测试版”版本中。我的实际文件是:

defaultConfig {
    versionCode 14
    versionName "0.7.5"
    minSdkVersion 9
    targetSdkVersion 18
}
buildTypes {
    beta {
        packageNameSuffix ".beta"
        versionNameSuffix "-beta"
        signingConfig signingConfigs.debug
    }
    ....
}

对于测试和自动部署,我需要得到一个最终的 versionName,比如:0.7.5-beta-build201310040.7.5-beta-build1380855996或者类似的东西。有任何想法吗?

4

7 回答 7

186
beta {
    packageNameSuffix ".beta"
    versionNameSuffix "-beta" + "-build" + getDate()
    signingConfig signingConfigs.debug
}

def getDate() {
    def date = new Date()
    def formattedDate = date.format('yyyyMMddHHmmss')
    return formattedDate
}

浓缩:

def getDate() {
    return new Date().format('yyyyMMddHHmmss')
}
于 2013-10-04T14:52:26.077 回答
38

您可以在 build.gradle 中定义自定义函数和变量。

def versionMajor = 3

def buildTime() {
    def df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'") // you can change it
    df.setTimeZone(TimeZone.getTimeZone("UTC"))
    return df.format(new Date())
}

然后你可以使用它:

android {
    defaultConfig {
       versionName "${versionMajor}-beta-build-${buildTime()}"
    }
}

或者如果你想在你的 versionNameSuffix 中添加它

beta {
    versionNameSuffix "-beta-build-${buildTime()}"      
}
于 2013-10-06T14:09:46.297 回答
8

另外,不要忘记在第一行添加 import as Gradle:

import java.text.SimpleDateFormat;
...
于 2015-05-13T09:18:33.507 回答
5
for simple one row solution define this property above android section 

final BUILD_DATE = new Date().format('yyyy_MM_dd_HHmm')

and then 

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion

    defaultConfig {
        applicationId APPLICATION_ID
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.compileSdkVersion
        versionName GIT_TAG_NAME
        versionCode GIT_COMMIT_COUNT
        setProperty("archivesBaseName",`enter code here` "com-appname-$BUILD_DATE-$versionName")
    }
}
于 2017-09-22T10:57:58.263 回答
1

我不熟悉 Android Studio,但我会假设 Gradle 的行为正常。在您的构建项目配置中添加这样的内容应该可以解决问题:

allProjects {
    gradle.taskGraph.whenReady { taskGraph ->
        versionNameSuffix += '-build' + // Java/Groovy code to produce the timestamp formatted the way you want
    }
}
于 2013-10-04T13:31:22.813 回答
0

你可以测试

task timenow {
    println(new Date().getTime())
}

运行 gradle:gradle timenow

查看详细信息。将其放在顶层构建中

ext {
    configuration = [
            appName          : "vBulletin",
            applicationId    : "com.vbulletin",
            minSdkVersion    : 14,
            targetSdkVersion : 19,
            compileSdkVersion: 19,
            versionCode      : 6,
            versionName      : "1.3.6",
            buildToolsVersion: "25.0.0",
    ]

}

task createBrand {
    appConfig.applicationId = appConfig.applicationId + ".${brand}"
    appConfig.versionCode = new Date().getTime()
    appConfig.versionName = version
}
于 2017-06-07T07:06:28.310 回答
0

这适用于 Kotlin DSL (build.gradle.kts):

// At the top of the file
import java.time.LocalDate
import java.time.format.DateTimeFormatter.*

// ...

android {
    buildTypes {
        getByName("debug") {
            val date = LocalDate.now().toString()
            val date2 = LocalDate.now().format(ISO_LOCAL_DATE)
            val date3 = LocalDate.now().format(ofPattern("yyyy-MM-dd"))
            versionNameSuffix = date
        }
    }
}

您还可以将创建日期提取到函数中:

android {
    buildTypes {
        getByName("debug") {
            versionNameSuffix = generateDate()
        }
    }
}

fun generateDate() = LocalDate.now().toString()
// OR fun generateDate() = LocalDate.now().format(ISO_LOCAL_DATE)
// OR fun generateDate() = LocalDate.now().format(ofPattern("yyyy-MM-dd"))
于 2022-02-18T10:04:48.487 回答