美文网首页
Android app内显示git分支名称

Android app内显示git分支名称

作者: 小胖熊9527 | 来源:发表于2020-08-24 11:45 被阅读0次

    有时候出于开发目的需要在app内显示当前分支名称
    google了一下,这里记录一下

    来源https://stackoverflow.com/questions/7911844/how-to-show-current-git-branch-in-an-android-application-programatically

    android {
        defaultConfig {
            minSdkVersion 16
            targetSdkVersion 25
            versionCode 1
            versionName "1"
            resValue "string", "gitBranch", gitBranch()
        }
        buildTypes {...}
    }
    
    
    def gitBranch() {
        def branch = ""
        def proc = "git rev-parse --abbrev-ref HEAD".execute()
        proc.in.eachLine { line -> branch = line }
        proc.err.eachLine { line -> println line }
        proc.waitFor()
        branch
    }
    

    相关文章

      网友评论

          本文标题:Android app内显示git分支名称

          本文链接:https://www.haomeiwen.com/subject/wlxnjktx.html