gradle文件详细介绍

本文深入探讨了Gradle构建系统的配置细节,包括项目级build.gradle文件和模块级build.gradle文件的作用和用法,揭示了如何有效地管理和组织项目依赖库。
摘要由CSDN通过智能技术生成

项目空间build.gradle文件:


// Top-level build file where you can add configuration options common to all sub-projects/modules.  
/** 
 * 项目空间的编译环境 
 */  
buildscript {  
    /** 
     * 当前仓库源 
     */  
    repositories {  
        /** 
         * 对应Android Plugin Repository 
         */  
        jcenter()  
    }  
    dependencies {  
        /** 
         * 对应Android Plugin Version 
         */  
        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 {  
        /** 
         * 对应Default Plugin Repository 
         */  
        jcenter()  
    }  
}  

Module的build.gradle文件:


/** 
 * 声明这是一个android应用 
 */  
apply plugin: 'com.android.application'  
/** 
 * Android设置 
 */  
android {  
    /** 
     * 签名:对应Signing选项 
     */  
    signingConfigs {  
        /** 
         * 签名名称:对应Singing→Name 
         */  
        test1 {  
            /** 
             * Key名字:对应Singing→Key Alias 
             */  
            keyAlias 'siyehua'  
            /** 
             * Key密码:对应Singing→Key Password 
             */  
            keyPassword 'siyehua'  
            /** 
             * KeyStroe路径:对应Singing→Stroe File 
             */  
            storeFile file('C:/Users/Administrator/Desktop/work/其他/tour.keystore')  
            /** 
             * KeyStore密码:对应Singing→Store Password 
             */  
            storePassword 'siyehua'  
        }  
    }  
    /** 
     * 编译版本:对应Properties→Compile Sdk Version 
     */  
    compileSdkVersion 21  
    /** 
     * 构建版本:对应Properties→Build Tools Version 
     */  
    buildToolsVersion "21.1.2"  
    /** 
     * 默认配置:对应Flavors→Name(这个是默认渠道) 
     */  
    defaultConfig {  
        /** 
         * 包名:对应Flavors→Application Id 
         */  
        applicationId "com.siyehua.android_siyehua"  
        /** 
         * 向下兼容版本:对应Flavors→Min Sdk Version 
         */  
        minSdkVersion 15  
        /** 
         * 目标版本:对应Flavors→Target Sdk Version 
         */  
        targetSdkVersion 21  
        /** 
         * app版本号:对应Flavors→Version Code 
         */  
        versionCode 1  
        /** 
         * app版本名称:对应Flavors→Version Name 
         */  
        versionName "1.0"  
        /** 
         * 签名信息:对应Flavors→Signig Config 
         */  
        signingConfig signingConfigs.test1  
        /** 
         * 测试APP 的id:对应Flavors→Test Application Id 
         */  
        testApplicationId 'siyehua'  
        /** 
         * 测试Runner:对应Flavors→Test Instrumentation Runner 
         */  
        testInstrumentationRunner 'siyehua'  
    }  
    /** 
     * 构建类型:对应Build Types 
     */  
    buildTypes {  
        /** 
         * 发布版本:对应Build Types→左边栏名字为release的构建版本 
         */  
        release {  
            minifyEnabled false  
            /** 
             * release的Proguard默认为Module下的proguard-rules.pro文件. 
             */  
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'  
        }  
        /** 
         * test版本:对应Build Types→左边栏名字为testbuild_001的构建版本 
         */  
        testbuild_001 {  
            /** 
             * 是否支持调试:对应testbuild_001→Debugable 
             */  
            debuggable true  
            /** 
             * 是否支持jin调试:对应testbuild_001→Jin Debuggable 
             */  
            jniDebuggable true  
            /** 
             * 签名:对应testbuild_001→Signing Config 
             */  
            signingConfig signingConfigs.test1  
            /** 
             * 是否使用RenderScript:对应testbuild_001→Renderscript Debuggale 
             */  
            renderscriptDebuggable true  
            /** 
             * App id后缀:对应testbuild_001→Application Id Suffix 
             */  
            applicationIdSuffix '_10087'  
            /** 
             * 版本名称后缀:对应testbuild_001→Version Name Suffix 
             */  
            versionNameSuffix '_10088'  
            /** 
             * 是否去除无用的资源:对应testbuild_001→Minify Enabled 
             */  
            minifyEnabled true  
            /** 
             * 是否支持本地化整理:对应testbuild_001→Pseudo Locales Enaled 
             */  
            pseudoLocalesEnabled true  
            /** 
             * 是否支持Zip Align:Zip Align Enabled 
             */  
            zipAlignEnabled true  
        }  
        /** 
         * 对应调试版本 
         */  
        debug {  
        }  
    }  
    /** 
     * 编译选项 
     */  
    compileOptions {  
        /** 
         * 资源版本:对应Properties→Source Compatibility 
         */  
        sourceCompatibility JavaVersion.VERSION_1_7  
        /** 
         * 目标版本:对应Properties→Target Compatibility 
         */  
        targetCompatibility JavaVersion.VERSION_1_7  
    }  
    /** 
     *多渠道打包:多渠道打包使用这个设置不同的配置 
     */  
    productFlavors {  
        /** 
         * 对应Flavors→中名字为flavor12的配置 
         */  
        flavor12 {  
        }  
    }  
    /** 
     * 打包时候要忽略的文件:对应Properties→Ignore Assets Pattern 
     */  
    aaptOptions {  
    }  
    /** 
     * DEX选项 
     */  
    dexOptions {  
        /** 
         * 增长DEX:对应Properties→Incremental Dex 
         */  
        incremental false  
    }  
}  
/** 
 * 依赖包 
 */  
dependencies {  
    /** 
     * 对应Dependencies下的依赖包 
     */  
    compile fileTree(dir: 'libs', include: ['*.jar'])  
    compile 'com.android.support:appcompat-v7:21.0.2'  
    releaseCompile files('libs/xmn_lpush_1.3.jar')  
}  
/** 
 * 当前Module的仓库源:对应Properties→Library Reposiory(由于这个项目已经使用了一个仓库源 
 * 除非有特殊要求,这里不建议写仓库源) 
 */  
repositories {  
    123  
}  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值