Android 解决之依赖包中添加的com.android.support版本不同导致冲突的问题
Posted 彬sir哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 解决之依赖包中添加的com.android.support版本不同导致冲突的问题相关的知识,希望对你有一定的参考价值。
依赖包:
implementation 'com.android.support:appcompat-v7:25.0.1'
implementation 'com.android.support.constraint:constraint-layout:2.0.1'
添加第二个依赖包后和第一个依赖包就冲突了
解决:
implementation 'com.android.support.constraint:constraint-layout:2.0.1'
改为
implementation ('com.android.support.constraint:constraint-layout:2.0.1')
exclude group: 'com.android.support'
exclude group: 'com.android.support’表示包含com.android.support的都排除
以上是关于Android 解决之依赖包中添加的com.android.support版本不同导致冲突的问题的主要内容,如果未能解决你的问题,请参考以下文章
如何解决之Android Studio不能自动更新安装apk文件的问题
Android 解决RxJava内存泄露之AutoDispose