zoukankan      html  css  js  c++  java
  • 使用Jenkins进行android项目的自动构建(6)

    之前已经介绍过使用Maven做构建,在来介绍一下Gralde的自动化构建。

    什么是Gralde?官方的解释是

    Gradle is an open source build automation system. Gradle can automate the building, testing, publishing, deployment and more of software packages or other types of projects such as generated static websites, generated documentation or indeed anything else.
    
    Gradle combines the power and flexibility of Ant with the dependency management and conventions of Maven into a more effective way to build. Powered by Build Programming Language, Gradle is concise yet expressive.

    环境搭建步骤跟Maven的大致相同,只需要将Maven的用Gralde替换。

    下载Gralde,解压,并将Gralde的bin目录加入到环境变量PATH,然后配置Jenkins,选择“管理 Jenkins”->“設定系統”,将刚才Gralde的目录路径填入相应设定中。最后在Jenkins的外挂程式中安装Gradle plugin。

    Gralde的具体例子

    // 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:1.0.0'
    
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }
    }
    
    allprojects {
        repositories {
            mavenLocal()
            maven {
                url "http://localhost/repo"
            }
        }
    }
    apply plugin: 'com.android.application'
    //apply plugin: 'com.android.library'
    
    android {
        compileSdkVersion 21
        buildToolsVersion "21.1.2"
    
        defaultConfig {
            applicationId "com.example.demo"
            minSdkVersion 15
            targetSdkVersion 21
            versionCode 1
            versionName "2.1.1"
        }
    
        signingConfigs {
            releaseConfig {
                storeFile file(System.getenv("KEYSTORE"))
                storePassword System.getenv("KEYSTORE_PASSWORD")
                keyAlias System.getenv("KEY_ALIAS")
                keyPassword System.getenv("KEY_PASSWORD")
            }
        }
    
        buildTypes {
            release {
                signingConfig signingConfigs.releaseConfig
            }
        }
    
        packagingOptions {
            exclude 'META-INF/LICENSE.txt'
        }
    
        lintOptions {
            abortOnError false
        }
    
        sourceSets {
            main {
                manifest {
                    srcFile 'src/main/AndroidManifest.xml'
                }
                java {
                    srcDir 'src/main/java'
                }
                res {
                    srcDir 'src/main/res'
                }
                assets {
                    srcDir 'assets'
                }
            }
        }
    }
    
    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        compile project(':framework')
        compile 'com.example:libxxx:1.0'
    }

     Jenkins中专案的组态设定也需要做一下改动

  • 相关阅读:
    Git 安装部署的详细说明
    jmeter数据库连接异常记录
    安装测试真的有那么简单吗?
    5G通信系统简单介绍
    postman 模拟服务器server
    再来对http协议做个详细认识
    关于Fiddler Everywhere的使用说明
    pom模式+ddt思想+logger+allure 重构jpress
    adb常见异常归类
    DDT思想
  • 原文地址:https://www.cnblogs.com/pasco/p/4330207.html
Copyright © 2011-2022 走看看