How to find out which library includes a version of a supporting library

I get the following warning:

All com.android.support libraries must use the exact same version specification...

I know what that means, but now I'm stuck with how easy it is to find out which dependency includes conflicting versions. I want to exclude the support library from them, for example:

compile ('...')  {
    exclude group: 'android.support'
}

But how to identify dependencies that are responsible?

0
source share
1 answer

You can look at the tree full gradle dependency tree using the command below -

gradle app:dependencies

Link

+4
source

Source: https://habr.com/ru/post/1016047/


All Articles