web-dev-qa-db-fra.com

comment ajouter la date build à versionNameSuffix sur gradle

J'utilise Android Studio et je dois ajouter un suffixe à versionNameSuffix sur mon fichier build.gradle Android. J'ai trois buildTypes différents et il me suffit d'ajouter la date/heure à ma version "beta", mon fichier actuel est:

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

pour les tests et le déploiement automatique, je dois obtenir un nom de version final tel que: 0.7.5-beta-build20131004, 0.7.5-beta-build1380855996 ou quelque chose du genre. Des idées?

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

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

Condensé:

def getDate() {
    return new Date().format('yyyyMMddHHmmss')
}
137

Vous pouvez définir dans votre build.gradle des fonctions et des variables personnalisées.

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())
}

Ensuite, vous pouvez l'utiliser:

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

ou si vous voulez l'ajouter à votre versionNameSuffix

beta {
    versionNameSuffix "-beta-build-${buildTime()}"      
}
35

De plus, n'oubliez pas d'ajouter import comme première ligne de Gradle:

import Java.text.SimpleDateFormat;
...
9
ivan.panasiuk
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")
    }
}
2
yogaboy

Je ne connais pas bien Android Studio, mais je suppose que Gradle se comporte normalement. Ajouter quelque chose comme ceci à la configuration de votre projet de construction devrait faire l'affaire:

allProjects {
    gradle.taskGraph.whenReady { taskGraph ->
        versionNameSuffix += '-build' + // Java/Groovy code to produce the timestamp formatted the way you want
    }
}
1
Jamie Bisotti

Vous pouvez tester

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

Run gradle: gradle timenow

Voir les détails. Placez-le sur le build de niveau supérieur

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
}
0
Tuan Nguyen