赞
踩
exclude group: ‘com.squareup.okhttp3’
exclude group: ‘com.squareup.okio’
exclude group: ‘com.google.code.gson’
//exclude(module: ‘gson’) // 防止版本冲突
}
./gradlew :app:dependencies
注意:这里的 app 是指工程下的 app 目录,如果你工程下没有 app 而是别的目录,要把这个 app 改为你的工程实际目录名字。
该 task 会显示如下所示的输出:
输出列表展示了所有 configuration 下的依赖树,依赖关系明显,层次清晰。如果觉得输出的结果太冗长 (通常情况下包含几十个 configuration),可以通过指定 configuration 来显示特定的依赖树:
./gradlew :app:dependencies --configuration releaseCompileClasspath
该命令只会显示 release 模式下编译过程中的依赖树。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。