android 查看 gradle 依赖树

./gradlew :app:dependencies
这个命令会将 gradle 执行的各个步骤全打印出来,包括 debugApk、debugCompile、releaseApk、releaseCompile、compile 等,不方便查看。

./gradlew :app:dependencies --configuration debugRuntimeClasspath
可以配置 configuration 参数仅打印 debug 依赖。

./gradlew :app:dependencies --configuration implementation
也可以配置为仅打印 implementation 依赖。

依赖树

你可能感兴趣的:(android 查看 gradle 依赖树)