android 查看gradle依赖

查看gradle依赖

# 查看所有依赖
gradlew :app:dependencies -q
# debug编译依赖
gradlew :app:dependencies -q --configuration debugRuntimeClasspath
# release编译依赖
gradlew :app:dependencies -q --configuration releaseRuntimeClasspath
# 编译依赖的注解库,对于apk没影响
gradlew :app:dependencies -q --configuration debugAnnotationProcessorClasspath

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