解决编译时依赖版本冲突问题
Posted wanqieddy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决编译时依赖版本冲突问题相关的知识,希望对你有一定的参考价值。
当编译出现如下问题(版本不兼容):
android dependency ‘com.android.support:support-fragment‘ has different version for the compile (25.3.1) and runtime (26.1.0) classpath. You should manually set the same version via DependencyResolution
如何解决 :
./gradlew app:dependencies > log_dependencies.txt
提取依赖的信息。
打开 log_dependencies.txt文件,查找26.1.0关键字。
当前使用的implementation ‘com.android.support:appcompat-v7:25.3.1‘
发现:account模块中,所依赖模块mvp的 25.3.1与26.1.0冲突。
解决方案:
1:mvp模块中去掉所依赖的冲突项。
2:添加指定解决版本冲突的依赖项版本。
以上是关于解决编译时依赖版本冲突问题的主要内容,如果未能解决你的问题,请参考以下文章
当***模块及其子模块之一作为单独版本单独导入时,如何解决冲突的 go 模块依赖关系?
Android Gradle 插件Android 依赖管理 ⑤ ( Gradle 依赖优化 | 命令行查看依赖模块 | 依赖冲突问题 | 依赖传递冲突 | 分库冲突 | 依赖分组不同导致冲突 )