Question:
How do I find the version of libraries that are being used when my Gradle file mentions a dependency using the '+' operator in the version number of the dependency?
Context
My build.gradle
under app module reads like so:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:5.+'
}
What is the version of the play-services library that is being used here?
Best Solution
You can use gradles' build-in 'dependencyInsight' task to query the resolved version of your dependency:
If you want to get an overview for all your dependencies in one go, you can do
If you use the gradle wrapper you must use
./gradlew
instead ofgradle