如何设置Android应用程序版本的数量建立在jenkins?

前端之家收集整理的这篇文章主要介绍了如何设置Android应用程序版本的数量建立在jenkins?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
成功推送后,应用程序由jenkins自动建立,但版本始终为1.0.而不是“0”,我想在jenkins中插入相应的编号:1.119,1.120,1.121 …

那是我的build.gradle文件

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

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.12.2'
    }
}

allprojects {
    repositories {
        mavenCentral()
    }
}

build.sh

#!/bin/bash
gradle clean 
gradle build
#. run_android_ui_tests.sh

我的gradle.properities只包含评论.

解决方法

通过将这两个字符串插入到build.gradle的defaultConfig中解决问题:
def env = System.getenv()
versionName "1." + env['BUILD_NUMBER']

代替

versionName "1.0"
原文链接:https://www.f2er.com/android/312427.html

猜你在找的Android相关文章