Gradle: find resolved version of a dependency imported with + Gradle: find resolved version of a dependency imported with + android android

Gradle: find resolved version of a dependency imported with +


Within app module's build.gradle I've imported Square's Moshi library as follows:

    dependencies {        compile 'com.squareup.moshi:moshi:+'    }

Then I executed following command in terminal:

./gradlew app:dependencyInsight --configuration compile --dependency com.squareup.moshi:moshi

Here's the output that I've received:

enter image description here


All easy, open hierarchy of view Project and see External Librariesenter image description here


If you want to check the overview for all your dependencies, you can check with this command -

Solution 1-

./gradlew app:dependencies

Or

Solution 2-

If you want to check for any specific dependency.you can use gradles' build-in 'dependencyInsight : -

gradle dependencyInsight --configuration compile --dependency compile 'test:test:+'

or

Solution 3-

You can check your project .idea folder

inside your project -> .idea/libraries

there also you can see the final version of dependencies used.