在Gradle buildscript中使用classpath有什么用

时间:2016-01-12 08:30:19

标签: android android-gradle build.gradle

buildscript classpath(项目)的依赖项部分中包含build.gradle有什么用?示例:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

classpath 'com.android.tools.build:gradle:1.5.0'它的目的是什么/它做什么?

1 个答案:

答案 0 :(得分:1)

这是Gradle本身使用的类路径。如果要使用非标准插件或其他支持类扩展构建逻辑,则必须在此类路径中找到它们。

提到的依赖com.android.tools.build:gradle:1.5.0包含执行android特定构建的插件。