编辑
解决support库冲突
本文访问次数:0

在项目根目录build.gralde中添加以下代码,指定support库所使用的版本,注意multidex和其它support库不同

subprojects {
    project.configurations.all {
        resolutionStrategy.eachDependency { detail ->
            if (detail.requested.group == 'com.android.support'
                    && !detail.requested.name.contains('multidex') ) {
                detail.useVersion 'x.y.z'
            }
        }
    }
}

需要输入验证码才能留言

没有任何评论