放置代碼位置
如圖摄狱,統(tǒng)一支持庫的版本即可垃帅。
代碼如下:
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '27.1.1'
}
}
}
}
其中27.1.1更換為你項(xiàng)目中的版本。