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?
source
share