若是引用的第三方庫的支持庫版本低於(或者不一致)app build.gradle中的支持庫版本,可能會出現以下問題:android
all com.android.support libraries must use the exact same version specification(mixing versions can lead to runtime crashes)bash
以下圖所示:app
去改第三方庫所用的支持庫版本比較麻煩,若是用的庫不少的話工做量很大。這個時候咱們能夠考慮強制讓全部模塊都用相同的支持庫版本。ide
在app build.gradle中添加:gradle
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '26.1.0'
}
}
}
}複製代碼
其中,26.1.0就是你要使用的支持庫版本號,你能夠根據須要改爲其它的。ui