1、遇到编译错误 :Type com.xxx is defined multiple times:...
依赖:
首先我们需要知道哪些库存在着冲突,可以输入命令:
./gradlew app:dependencies
就会看到依赖库的依赖关系,例如:
然后找出存在冲突的依赖库,这里我们可以看到的是GlideImageLoader中的依赖重复依赖了BigImageViewer。只需要将冲突的依赖排除掉即可。改为:
更改之后,我们再执行命令:
./gradlew app:dependencies
可以看到GlideImageLoader所依赖的 com.github.piasy:BigImageViewer:1.8.1 已经不再显示:
exclude group:表示只要包含com.github.piasy 的都排除
例如:排除group中的指定module:
api("com.afollestad.material-dialogs:core:0.9.5.0") {
exclude group: 'com.android.support', module: 'support-v13'
exclude group: 'com.android.support', module: 'support-vector-drawable'
}
另外还有一个建议,在我们自己创建library给别人使用时,如果需要依赖com.android.support,gson这些使用者常用的库的话,建议用provider(compileOnly,android studio3.0中更改为compileOnly)的方式依赖,避免冲突。因为provider(compileOnly)的依赖方式,只在编译时有效,不会参与打包。
2、通过Grovvy脚本修改版本号解决冲突
在其存在冲突的moudle中的build.gradle文件中加入下面代码,原理就是通过遍历所有依赖,并修改指定库的版本号,
其中,requested.group=='com.android.support' com.android.support表示要修改的依赖库。
details.useVersion '28.0.0' 28.0.0表示要修改的版本号
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '28.0.0'
}
}
}
}