查询所有依赖:
./gradlew -q :app:dependencies
查询所有依赖并写入文件:
./gradlew -q :app:dependencies > log.txt
查询某个configuration依赖:
默认可以查询以下这些config:
releaseRuntimeClasspath、debugRuntimeClasspath
releaseCompileClasspath、debugCompileClasspath
./gradlew -q :app:dependencies --configuration releaseRuntimeClasspath
如果配置了不同的flavor可以这样查询某一个flavor的依赖树:
例如flavor名字叫dev,则可以这样查询
./gradlew -q :app:dependencies --configuration devReleaseRuntimeClasspath
网友评论