Android 自定义gradle property
公司主营业务:做网站、网站建设、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。创新互联建站是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。创新互联建站推出皇姑免费做网站回馈大家。
在Android studio上运行项目,gradle的配置是必不可少的,但是随着项目的逐渐成长,迎面而来的就是.各种依赖包的添加,数不胜数的签名,渠道包等,整个gradle变得很乱,这样其实我们可以将gradle的部分内容分离出来放在另一个自定义gradle内. 如这时我们添加的Plugin 就只要对其赋值就可以了.
需要注意的是在dependencies.gradle文件中向Project添加额外的Property时,我们并不能直接定义,而是应该通过ext来定义。
一般我们使用闭包的方式,代码如下:
ext { //添加supportLibraryVersion属性 supportLibraryVersion = '23.1.1' //添加dependenciesretrofitVersion属性 dependenciesretrofitVersion = '2.0.0-beta2' //添加dependencies数组 dependencies = [ retrofit : "com.squareup.retrofit:retrofit:$retrofitVersion", retrofitConverterGson: "com.squareup.retrofit:converter-gson:$retrofitVersion", retrofitAdapterRxJava: "com.squareup.retrofit:adapter-rxjava:$retrofitVersion", ] }
也可以不使用闭包的
//添加supportLibraryVersion属性 ext.supportLibraryVersion = '23.1.1' //添加dependenciesretrofitVersion属性 ext.dependenciesretrofitVersion = '2.0.0-beta2'
当然gradle其实已经提供了很多自定义的property,一些常用的有:
project:Project本身
name:Project的名
description:Project的描述
version:Project的版本号
path:Project的绝对路径
buildDir:Project构建结果存放目录
在根目录的build.gragle下添加
apply from: 'dependencies.gradle'
接着在知道app工程的builde.gradle下添加依赖如下:
dependencies { //获取 dependencies.gradle 自定义的数组 Mapdependencies = rootProject.ext.dependencies compile dependencies.retrofit compile dependencies.retrofitConverterGson compile dependencies.retrofitAdapterRxJava }
当然也可以配置其他,如 defaultConfig
当前app下的defaultConfig,引用dependencies.gradle 配置的参数
defaultConfig { minSdkVersion rootProject.ext.androidMinSdkVersion targetSdkVersion rootProject.ext.androidTargetSdkVersion }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!