码迷,mamicode.com
首页 > 移动开发 > 详细

Android dependency has different version.You should manually set the same version via DependencyReso

时间:2018-09-11 16:07:18      阅读:568      评论:0      收藏:0      [点我收藏+]

标签:you   details   iter   compile   string   different   rate   style   print   

有时候导入一些module时,会出现以下问题

Android dependency ‘com.android.support:support-v4‘ has different version for the compile (23.3.0) and runtime (25.4.0) classpath. You should manually set the same version via DependencyResolution
  • 1

这是因为module中可能依赖了不同的支持库,版本不一样。

解决办法
在项目根目录的build.gradle中加入以下代码
将details.useVersion后的值替换为统一的版本.

subprojects {
    project.configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == ‘com.android.support‘
                    && !details.requested.name.contains(‘multidex‘) ) {
                //统一版本号
                details.useVersion "25.4.0"
            }
        }
    }
}

Android dependency has different version.You should manually set the same version via DependencyReso

标签:you   details   iter   compile   string   different   rate   style   print   

原文地址:https://www.cnblogs.com/Free-Thinker/p/9627670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!