Reputation: 5353
My goal is to see the tree of dependencies (such as: appcompat, dagger, etc) in a particular project.
Like the one IntelliJ:
Upvotes: 187
Views: 178648
Reputation: 1689
Simple use is to type text to Terminal or PowerShell:
./gradlew app:dependencies
Advanced usage:
./gradlew app:dependencies --configuration implementation
./gradlew app:dependencies --configuration testImplementation
./gradlew app:dependencies --configuration androidTestImplementation
Upvotes: 8
Reputation: 2228
In latest android studio canary version you have dependency analyzer in Gradle tool
Upvotes: 22
Reputation: 191671
The image in the question doesn't really show a tree, just a flat list of everything compiled into the app.
Are you using Gradle?
If so, you can truly see the "tree" by running a Gradle command
Android documentation: View the dependency tree
- Select View > Tool Windows > Gradle (or click Gradle icon in the tool windows bar).
- Expand AppName > Tasks > android and double-click
androidDependencies
. After Gradle executes the task, the Run window should open to display the output.
(produces tree-like list)
./gradlew app:dependencies
and/or
(produces flat list)
./gradlew app:androidDependencies
Where app
is your module's name
And you get something like so
+--- MyApp:mylibrary:unspecified
| \--- com.android.support:appcompat-v7:25.3.1
| +--- com.android.support:animated-vector-drawable:25.3.1
| | \--- com.android.support:support-vector-drawable:25.3.1
| | \--- com.android.support:support-v4:25.3.1
| | \--- LOCAL: internal_impl-25.3.1.jar
| +--- com.android.support:support-v4:25.3.1
| | \--- LOCAL: internal_impl-25.3.1.jar
| \--- com.android.support:support-vector-drawable:25.3.1
| \--- com.android.support:support-v4:25.3.1
| \--- LOCAL: internal_impl-25.3.1.jar
\--- com.android.support:appcompat-v7:25.3.1
+--- com.android.support:animated-vector-drawable:25.3.1
| \--- com.android.support:support-vector-drawable:25.3.1
| \--- com.android.support:support-v4:25.3.1
| \--- LOCAL: internal_impl-25.3.1.jar
+--- com.android.support:support-v4:25.3.1
| \--- LOCAL: internal_impl-25.3.1.jar
\--- com.android.support:support-vector-drawable:25.3.1
\--- com.android.support:support-v4:25.3.1
\--- LOCAL: internal_impl-25.3.1.jar
For specific flavor use the command
gradle app:dependencies --configuration <flavorNameRuntimeClasspath>
Note: If you run ls
(or dir
on Windows) in that folder, and don't see gradlew
(or gradlew.bat
), you are in the wrong folder.
Upvotes: 349
Reputation: 1150
Inspect and visualize each dependency in the dependency graph of your project, as resolved by Gradle during project sync, by following these steps:
Upvotes: 31
Reputation: 5375
Click the Gradle tab and go to AppName > Tasks > help > dependencies
Upvotes: 7
Reputation: 5325
dependencies
In the Run panel you will find the dependency tree.
Another method:
Open the Gradle panel
Find the "(root)" postfix and open (app's folder name)
Open the Tasks node
Open the android node
Double click on the "androidDependencies"
In the Run panel you will find the dependency list
Before a normal build switch back to the normal Build Configuration (next to the hammer)
How to find what dependency is updated: https://github.com/ben-manes/gradle-versions-plugin
Usage
Add this to project level build.gradle
apply plugin: "com.github.ben-manes.versions"
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.github.ben-manes:gradle-versions-plugin:0.20.0"
}
}
Sync Now
dependencyUpdates
In the Run panel you will find the result.
Upvotes: 22
Reputation: 11018
terminal command to see all dependencies list is
./gradlew -q dependencies app:dependencies --configuration implementation
Upvotes: 7
Reputation: 1835
On the right side, open the gradle tab > click the gradle icon (execute gradle task), in the popup dialog enter :
app:dependencies
in the command line field > ok
Upvotes: 33
Reputation: 5353
Finally, I figured it out. What I do is to select Project from Project menu (See the image below).
Upvotes: 16