I want to find dependencies of a library. For example, in my project, I implement android support library.
implementation 'com.android.support:appcompat-v7:26.1.0'
When I execute ./gradlew :app:androidDependencies,
android.arch.lifecycle:runtime:1.0.0@aarandroid.arch.lifecycle:common:1.0.0@jarandroid.arch.core:common:1.0.0@jar
As you see, after 2017 Google IO, google import Lifecycle and other architecture components.
- How can
gradletool find dependencies of library(in this case, support library)? - For developer, is there any command to show dependencies of a library ?

