项目多个依赖 产生的 Android 编译问题Android dependency has different version for the compile and runtime

Android 项目突然接盘,以前的项目有多个依赖包,现需要对以前的项目 进行重新修改。出现了 以下问题

Android dependency 'android.arch.lifecycle:livedata-core' has different version for the compile (1.1.0) and runtime (1.1.1) classpath. You should manually set the same version via DependencyResolution。

也曾挨着修改过各依赖包的build.gradle,没有任何卵用,可能是没有修改正确,多方查找 终于让自己找到解决办法。

无视module,直接在工程的build.gradle中添加配置:

subprojects {
    project.configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.android.support'
                    && !details.requested.name.contains('multidex') ) {
                details.useVersion '25.1.0'//这个版本号设置为你想要的版本
            }
        }
    }
}

原文地址

你可能感兴趣的:(项目多个依赖 产生的 Android 编译问题Android dependency has different version for the compile and runtime)