How to find out which library includes which support library version

和自甴很熟 提交于 2020-01-06 18:09:15

问题


I get following warning:

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

I know what that means, but now I'm stuck on how to easily find out which dependency does include the conflicting versions. I want to exclude the support library from them like following:

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

But how do I identify the dependencies that are responsible?


回答1:


You can watch full gradle dependency tree tree using the command below-

gradle app:dependencies

Reference



来源:https://stackoverflow.com/questions/42945613/how-to-find-out-which-library-includes-which-support-library-version

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!