Android开发时,有时候使用一些第三方库,如果第三方库中使用了com.android.support:support-v4:23.1.0
和我们项目中使用的不一样'com.android.support:support-v4:27.1.0'
,就可能会导致兼容包冲突。
-
这时候可以强制使用某一个兼容包,如下所示。
android { //解决兼容包冲突 configurations.all { resolutionStrategy.force 'com.android.support:support-v4:27.1.0' } }