3

我想在我的 AndroidManifest 中插入最后一次 git 提交的哈希(更具体地说是 versionCode 标签)。

我正在使用带有 Android Studio 的 gradle。

4

2 回答 2

7

要回答 OQ,请将以下内容添加到应用的 build.gradle 的 android 部分

def getGitHash = { ->
    def stdout = new ByteArrayOutputStream()
    exec {
        commandLine 'git', 'rev-parse', 'HEAD'
        standardOutput = stdout
    }
    return stdout.toString().trim()
}

由于 versionCode 是数字,因此将 defaultConfig versionName 更改为

versionName getGitHash()

更好的实施

我对自己项目的实际操作是将值注入到 BuildConfig 变量中并以这种方式访问​​它。

我在 android 部分使用这些方法:

def getGitHash = { ->
    def stdout = new ByteArrayOutputStream()
    exec {
        commandLine 'git', 'rev-parse', 'HEAD'
        standardOutput = stdout
    }
    return "\"" + stdout.toString().trim() + "\""
}

def getGitBranch = { ->
    def stdout = new ByteArrayOutputStream()
    exec {
        commandLine 'git', 'rev-parse', '--abbrev-ref', 'HEAD'
        standardOutput = stdout
    }
    return "\"" + stdout.toString().trim() + "\""
}

并将其添加到 BuildConfig 部分:

productFlavors {
    dev {
        ...
        buildConfigField "String", "GIT_HASH", getGitHash()
        buildConfigField "String", "GIT_BRANCH", getGitBranch()
        ...
    }
 }

然后在源代码中,比如Application.java

Log.v(LOG_TAG, "git branch=" + BuildConfig.GIT_BRANCH);
Log.v(LOG_TAG, "git commit=" + BuildConfig.GIT_HASH);
于 2016-12-29T13:23:48.250 回答
4

从Ryan Harter 的这篇文章中,标记您的提交并将以下内容添加到您的 build.gradle 脚本中。

/*
 * Gets the version name from the latest Git tag
 */
def getVersionName = { ->
    def stdout = new ByteArrayOutputStream()
    exec {
        commandLine 'git', 'describe', '--tags'
        standardOutput = stdout
    }
    return stdout.toString().trim()
}

然后更改versionNameindefaultConfig以使用getVersionName().

于 2013-11-21T09:45:45.397 回答