How can I check which Gradle Android plugin version is used in my project?

后端 未结 4 1066
灰色年华
灰色年华 2020-12-17 08:40

In my build.gradle file I set the following dependency:

dependencies {
    classpath \'com.android.tools.build:gradle:0.5.+\'
} 

This will au

4条回答
  •  时光取名叫无心
    2020-12-17 09:17

    Showing the resolved dependencies for the build script class path isn't a built-in operation as for other configurations (which can be inspected with gradle dependencies). However, you can write a task to do so. For example:

    task showClasspath  {
        doLast {
            buildscript.configurations.classpath.each { println it.name }
        }
    }
    

    A variation that just shows the Android plugin version:

    task showVersion {
        doLast {
            println buildscript.configurations.classpath.resolvedConfiguration.firstLevelModuleDependencies.moduleVersion
        }
    }
    

提交回复
热议问题