方式一 使用插件 Gradle View
Step1 搜索下载插件Step2 使用插件 Step3 查看结果
方法二 AndroidStudio 自带 gradle 视图
Step1 使用执行 Step1 查看结果方法三 命令行
- 在模块的路径下使用,如 app 模块
../gradlew dependencies
- 在项目的根路径下使用
./gradlew :app:dependencies
导出查看
./gradlew :app:dependencies > dependencies.txt
根目录下查看配置信息
./gradlew dependencies --info
输出...
Creating configuration androidTestUtil
Creating configuration compile
Creating configuration apk
Creating configuration provided
Creating configuration api
Creating configuration implementation
Creating configuration runtimeOnly
Creating configuration compileOnly
Creating configuration wearApp
查看 implementation,结果不会显示第三方的依赖
./gradlew :app:dependencies --configuration implementation
# or
./gradlew :app:dependencies --configuration compile
直接查看依赖关系 debugCompileClasspath 推荐
./gradlew :app:dependencies --configuration debugCompileClasspath
网友评论