Android-----Project下的build.gradl
作者:
喜爱滴小麦芽 | 来源:发表于
2018-06-19 17:48 被阅读8次//顶级构建文件,您可以在这里添加常用的配置选项应用于所有的子项目/模块
// Top-level build file where you can add configuration options common to all sub-projects/modules.
//构建 脚本
buildscript {
//贮藏室,引用代码托管仓库,支持jcenter、maven、lvy仓库
repositories {
google()
//类似于GitHub的代码托管仓库,声明此配置,可以轻松引用jcenter上的开源项目
jcenter()
}
//依赖
dependencies {
//依赖gradle的构建版本
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
//注意:不要把应用依赖放在此处;它们要放在个自的模块buid.gradle文件中。
}
}
//所有项目配置
allprojects {
//贮藏室
repositories {
google()
jcenter()
}
}
//运行gradle clean时,执行此处定义的task
// 该任务继承自Delete,删除根目录中的build目录。
// 相当于执行Delete.delete(rootProject.buildDir)
task clean(type: Delete) {
delete rootProject.buildDir
}
本文标题:Android-----Project下的build.gradl
本文链接:https://www.haomeiwen.com/subject/ggczeftx.html
网友评论