1.Terminal 运行命令gradlew -q :app:dependencies查看依赖。
根据这些打印信息可以找到发生冲突的引用
2.解决方案
方案一:去掉重复依赖
implementation ('com.zhouyou:rxeasyhttp:2.1.5'){
exclude module: 'io.reactivex.rxjava2:rxandroid:2.1.1'
}
方案二:强制指定使用特定依赖
//在app.gradle 中的Android闭包中使用
configurations.all{
resolutionStrategy{
force 'io.reactivex.rxjava2:rxandroid:2.1.1'
}
}