如何将android build.gradle文件拆分为具有较小任务的文件

时间:2016-07-27 12:17:35

标签: android gradle build android-gradle build.gradle

我的构建文件很大且难以维护,如何将构建文件拆分为单独的文件,将较小的任务导入主gradle文件

1 个答案:

答案 0 :(得分:6)

<强>的build.gradle

apply from: 'other.gradle'

<强> other.gradle

println "configuring $project"
task hello << {
    println 'hello from other script'
}

输出gradle -q hello

> gradle -q hello
configuring root project 'configureProjectUsingScript'
hello from other script

来源:Configuring the project using an external build script