//让gradle 引入构建安卓app的插件
apply plugin: 'com.android.application' //自定义变量, 使用的时候不需要 ext 前缀
ext {
minSdkVersion = 15
prop2 = "foo"
} //自定义变量
def customProp2 = ["targetSdkVersion":23, "prop2":"bar"]; //自定义变量
// 根据日期自动生成build号
def calendar = Calendar.getInstance();
def tt = String.format("%d%02d%02d%02d",
calendar.get(Calendar.YEAR),
calendar.get(Calendar.MONTH)+1,
calendar.get(Calendar.DAY_OF_MONTH),
calendar.get(Calendar.HOUR_OF_DAY)); // 读取local.properties文件
def Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream()) android {
compileSdkVersion 24
buildToolsVersion "24.0.0" //签名选项
signingConfigs {
demoSignCfg {
keyAlias PROPERTY_FROM_GRADLE.PROPERTIES
//读取配置
keyPassword properties.getProperty("key.password")
storeFile file('demo.keystore')
storePassword properties.getProperty("key.password")
}
} //编译选项
compileOptions {
//使用jdk1.8 编译
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
} //代码检查选项
lintOptions {
//检查发布构建
checkReleaseBuilds rootProject.ext.checkReleaseBuilds
//遇到错误停止
abortOnError false
} //打包选项
packagingOptions {
//去除的文件
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
} //资源打包选项
aaptOptions {
//不压缩的文件
noCompress 'foo', 'bar'
//过滤文件
ignoreAssetsPattern "!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"
} //编译dex选项
dexOptions {
//堆栈内存最多4g
javaMaxHeapSize "4g"
} //配置
configurations {
//去掉所有的 com.android.support:support-annotations 依赖
all*.exclude group: 'com.android.support', module: 'support-annotations';
} //默认全局配置选项
defaultConfig {
applicationId "com.example.gradle_test"
minSdkVersion customProp.minSdkVersion
targetSdkVersion customProp2.targetSdkVersion
//使用生成的版本号
versionCode Integer.parseInt(tt)
versionName "1.0" //Manifest 里用的占位符: <... android:label="${activityLabel}" />
manifestPlaceholders = [ activityLabel:"defaultName"]
     //设置BuildConfig 字段
     buildConfigField "String", "BASE_URL", '"https://www.baidu.com/"'
} //构建变种, flavor 和 defaultConfig类型相同
productFlavors {
//变种1
flavor1 {
packageName "com.example.flavor1"
versionCode 20
       //覆盖defaultConfig的字段
       buildConfigField "String", "BASE_URL", '"https://www.baidu.com/"'
} flavor2 { }
} //配置各种目录
sourceSets {
//主要
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
jniLibs.srcDirs = ['libs']
} //测试资源路径
instrumentTest.setRoot('tests') debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
} //构建类型
buildTypes {
//debug类型(只是个名字而已)
debug {
//app id 后缀: com.example.app.debug
applicationIdSuffix ".debug"
} //发布类型(只是个名字而已)
release {
//关闭混淆
minifyEnabled false
//使用的混淆文件
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' //签名选项
signingConfig signingConfigs.demoSignCfg
       //移除无用资源
       
shrinkResources true  //版本名后缀
versionNameSuffix ".0"        //指定打包文件名
       applicationVariants.all { variant ->
         variant.outputs.each { output ->
         def outputFile = output.outputFile
           if (outputFile != null && outputFile.name.endsWith('.apk')) {
             //输出apk名称为boohee_v1.0_2015-01-15_wandoujia.apk
             def fileName = "apk_v${defaultConfig.versionName}_${releaseTime()}_${variant.productFlavors[0].name}.apk"
             output.outputFile = new File(outputFile.parent, fileName)
           }
         }
       } //过滤abi库
ndk {
//只打包如下平台的so
abiFilters "x86", "armeabi-v7a", "armeabi", 'mips'
}
} //自定义
jnidebug {
// 继承自上面的debug.
initWith debug applicationIdSuffix ".jnidebug"
jniDebuggable true
}
} //依赖仓库
repositories {
maven { url "https://jitpack.io" }
}
} //依赖管理
dependencies {
//编译/运行时依赖
compile fileTree(dir: 'libs', include: ['*.jar'])
//$rootProject.ext 指的是 项目的那个build.gradle里面定义了一个ext 变量
compile ("com.android.support:design:$rootProject.ext.SupportVersion"){
//不引用如下包
exclude module: 'support-v4'
exclude module: 'appcompat-v7'
//不传递引用
transitive false
}
   compile (project(":libray")){
//不引用如下包
exclude module: 'support-v4'
//不传递引用
transitive false
}
//测试依赖 testCompile 'junit:junit:4.12' //外部提供, 不打包 provided 'com.android.support:appcompat-v7:23.4.0' //falvor1需要的依赖, f1Compile, f1Provided..... flavor1Compile 'com.android.support:appcompat-v7:24.0.0' } //清理构建后资源的task task clean(type: Delete) { delete rootProject.buildDir }

gradle android dsl 属性大全 http://google.github.io/android-gradle-dsl/current/index.html 

以上配置如有错误, 还请指出

Android Gradle 配置选项合集的更多相关文章

  1. 老李分享:android app自动化测试工具合集

    老李分享:android app自动化测试工具合集   poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.如果对课程感兴趣,请大家咨 ...

  2. Android Gradle配置

    解决问题 错误: Could not find the AndroidManifest.xml file, going up from path //打开app build.gradle文件加入以下代 ...

  3. Android模拟器配置选项说明

    Memory Options是模拟器的运行内存大小,类比电脑内存大小,就是在设置->应用程序中,正在运行标签页下面显示的那个大小Internal storage是模拟器内置存储空间大小,用于存放 ...

  4. android动画源码合集、动态主题框架、社交app源码等

    Android精选源码 仿MIUI果冻视图-BouncingJellyView   一个快速易用的动态主题框架   android动画效果集合源码   android使用Kotlin开发的Dribbb ...

  5. Android gradle 配置

    gradle https://www.cnblogs.com/qianxudetianxia/p/4948499.html flavor https://blog.csdn.net/user11223 ...

  6. android学习笔记 对话框合集

    package com.zhangbz.dialog; import android.app.Activity; import android.app.AlertDialog; import andr ...

  7. Android下的软件合集

    在平常使用Android手机的时候,选择一个好的软件可以做到事半功倍的效果,所以在此总结一下,加速我们的工作与生活效率 1) ConnectBot ConnectBot是一个Android操作系统上的 ...

  8. Android编程实用代码合集

    1.android dp和px之间转换public class DensityUtil { /** * 根据手机的分辨率从 dip 的单位 转成为 px(像素) */ public static in ...

  9. Android 开发常用工具合集

    在 Android 开发中经常使用到的小功能,用于记录开发的那些事^_^ 1. 获取 release 和 debug 版本的 SHA1 public static String getSHA1(Con ...

随机推荐

  1. 了解Linux 命名空间

    转载: http://laokaddk.blog.51cto.com/368606/674256 命名空间提供了虚拟化的一种轻量级形式,使得我们可以从不同的方面来查看运行系统的全局属性.该机制类似于S ...

  2. javascript数组排序---2冒泡

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  3. collection系列用法-namedtuple()

    namedtuple() 参考文章地址:http://www.cnblogs.com/herbert/p/3468294.html namedtuple是继承自tuple的子类.namedtuple和 ...

  4. linux学习 建立静态库,动态库,写简单的makefile

    建立静态库 建立四个文件 bin(可运行文件),lib(库),include(头文件),src(放源文件) 这里的起的库明为add 在src文件里运行 1)gcc -c add.c //编译add.c ...

  5. k8s之scheduler

    一.概述 调度器是kubernetes中独特而又重要的一个模块,独特是因为scheduler是唯一一个以plugin形式存在的组件,重要是因为kubernetes中最重要的基础单元pod的部署是通过s ...

  6. [学习笔记]viewport定义,弹性布局,响应式布局

    一,移动端宽度设置viewport视图窗口,<meta name="viewport" content="width=device-width,initial-sc ...

  7. JS 代码调试经验总结(菜鸟必读)

    前言:不知不觉写了很多,希望你能耐心看完这篇文章 任何一个编程者都少不了要去调试代码,不管你是高手还是菜鸟,调试程序都是一项必不可少的工作.一般来说调试程序是在编写代码之后或测试期修改Bug 时进行的 ...

  8. Struts2相关注意点

    今天开始学习Struts2,有一个小栗子用到了DMI动态方法调用,使用DMI可以减少action的数量简化程序,不用在struts.xml的action中定义method属性.刚开始怎么也不能使用DM ...

  9. 根据用户的ID查用户的名字

    awk -F: '{if($3==0){print $1}}'  /etc/passwd

  10. C++学习之文件的输入输出

    C++学习之文件的输入输出        一.文件的打开与关闭        1.输出数据到文件        文件的操作需要包含fstream头文件,文件的操作对象为ifstream,ofstrea ...