您可以从命令行检查项目的 Android Gradle 插件版本吗?

Can you check Android Gradle Plugin version for project from command line?

我可以通过导航到 android 目录和 运行 ./gradlew --version 来检查项目的 gradle 版本。 Android Gradle Plugin?

是否有类似的命令查看版本

您可以使用以下buildEnvironment command

gradle buildEnvironment

Running gradle buildEnvironment visualises the buildscript dependencies of the selected project, similarly to how gradle dependencies visualizes the dependencies of the software being built.

要从结果中打印的所有内容中过滤掉特定的依赖项,您可以在 linux / macOS

上使用 grep
./gradlew buildEnvironment | grep com.android.tools.build:gradle: