Android Studio打包apk自动获取SVN号、时间、版本号、版本名称

雨燕双飞 提交于 2020-08-19 13:47:44

 

备注:打包之前一定要记得首先从svn update一下代码 这样才能保证打包的svn号是当前最新的SVN号

一、根目录下build.gradle文件配置

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        mavenCentral()
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'

        classpath "org.tmatesoft.svnkit:svnkit:1.8.11"//1.添加此处







    }
}

allprojects {
    repositories {
        mavenCentral()
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}






task clean(type: Delete) {
    delete rootProject.buildDir
}
 



二、app中的build.gradle文件配置

apply plugin: 'com.android.application'

import org.tmatesoft.svn.core.wc.*//2.添加此处

//3.添加时间
def releaseTime() {

    return new Date().format("yyMMddHHmm", TimeZone.getTimeZone("GMT+08:00"))

}
//4.添加SVN号
def getSvnRevision() {
    ISVNOptions options = SVNWCUtil.createDefaultOptions(true)
    SVNClientManager clientManager = SVNClientManager.newInstance(options)
    SVNStatusClient statusClient = clientManager.getStatusClient()
    SVNStatus status = statusClient.doStatus(projectDir, false)
    status.getCommittedRevision().getNumber()
    SVNRevision revision = status.getCommittedRevision()
    return revision.getNumber()
}

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.a.b"
        minSdkVersion 19
        targetSdkVersion 22
        versionCode 2
        versionName "2.2"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
 
    }

    buildTypes {
        debug {
            minifyEnabled false
            //app打包名称
            android.applicationVariants.all { variant ->
                variant.outputs.all {
                    outputFileName = "app_v${variant.versionName}_debug_${releaseTime()}_svn${getSvnRevision()}_V${variant.versionCode}.apk"
                }
            }
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.debug
            debuggable true
            jniDebuggable true
        }
        
        release {
            minifyEnabled false
            android.applicationVariants.all { variant ->
                variant.outputs.all {
                    outputFileName = "app_v${variant.versionName}_release_${releaseTime()}_svn${getSvnRevision()}_V${variant.versionCode}.apk"

                }
            }
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.release
            debuggable false
            jniDebuggable false
        }


    }
 

    buildToolsVersion '28.0.3'


}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation fileTree(include: ['*.aar'], dir: 'libs')
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  

}

 

三、最终打包apk名称

app_v1.1_release_2005181652_svn999_V1.apk

 

备注:打包之前一定要记得首先从svn update一下代码 这样才能保证打包的svn号是当前最新的SVN号

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!