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

后端 未结 4 1069
灰色年华
灰色年华 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 08:59

    try the following code:

    com.android.builder.Version.ANDROID_GRADLE_PLUGIN_VERSION
    

    This is the easiest one I think.

提交回复
热议问题