解决支持库版本兼容问题:all com.android.support libraries must use the exact same version specification

如果引用的第三方库的支持库版本低于(或者不一致)app build.gradle中的支持库版本,可能会出现如下问题:

all com.android.support libraries must use the exact same version specification(mixing versions can lead to runtime crashes)

如下图所示:

屏幕快照 2017-09-10 12.58.38.png

去改第三方库所用的支持库版本比较麻烦,如果用的库很多的话工作量很大。这个时候我们可以考虑强制让所有模块都用相同的支持库版本。

在app build.gradle中添加:

 
 
  1. configurations.all {
  2.     resolutionStrategy.eachDependency { DependencyResolveDetails details ->
  3.         def requested = details.requested
  4.         if (requested.group == 'com.android.support') {
  5.             if (!requested.name.startsWith("multidex")) {
  6.                 details.useVersion '25.3.1'
  7.             }
  8.         }
  9.     }
  10. }

其中,25.3.1就是你要使用的支持库版本号,你可以根据需要改成其它的。

猜你喜欢

转载自blog.csdn.net/tiankongcheng6/article/details/80388083