Android Studioを使用しており、Android build.gradleファイルのversionNameSuffixにサフィックスを追加する必要があります。3つの異なるbuildTypesがあり、必要なのは「ベータ」リリースに日時を追加するための実際のファイルは次のとおりです。
defaultConfig {
versionCode 14
versionName "0.7.5"
minSdkVersion 9
targetSdkVersion 18
}
buildTypes {
beta {
packageNameSuffix ".beta"
versionNameSuffix "-beta"
signingConfig signingConfigs.debug
}
....
}
テストと自動デプロイのために、次のような最終バージョン名を取得する必要があります:0.7.5-beta-build20131004
、0.7.5-beta-build1380855996
またはそのようなもの。何か案は?
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')
}
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()}"
}
また、インポートをGradleの最初の行として追加することを忘れないでください:
import Java.text.SimpleDateFormat;
...
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")
}
}
Android Studioには慣れていませんが、Gradleが通常どおり動作することを前提としています。ビルドプロジェクトの構成に次のようなものを追加することで、トリックができるはずです。
allProjects {
gradle.taskGraph.whenReady { taskGraph ->
versionNameSuffix += '-build' + // Java/Groovy code to produce the timestamp formatted the way you want
}
}
テストできます
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
}