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中专案的组态设定也需要做一下改动

  • 相关阅读:
    python os.walk()和os.path.walk()
    python学习之random模块
    java性能优化文章
    mysql和workbench的安装、创建实例、用户
    32位、64位与Java开发研究分析
    Web缓存
    深入分析 Java 中的中文编码问题
    eclipse+tomcat(eclipse自带插件) JSP修改后不生效问题
    今天给2010买的三星R428升级一下固态硬盘
    href="javascript:xxx(this);"和onclick="javascript:xxx(this);"的区别
  • 原文地址:https://www.cnblogs.com/pasco/p/4330207.html
Copyright © 2011-2022 走看看