只为成功找方法,不为失败找理由。

博客园 首页 新随笔 联系 订阅 管理
如果包冲突了会包如下这样的错:

Android dependency 'androidx.core:core' has different version for the compile (1.0.0) and runtime (1.0.1) classpath. You should manually set the same version via DependencyResolution


1.打开Terminal 输入: .
/gradlew -q app:dependencies
查看依赖冲突文件
2.在build.gradle里buildscript标签下添加

subprojects {
        project.configurations.all {
            resolutionStrategy.eachDependency { details ->
                if (details.requested.group == 'com.android.support'
                        && !details.requested.name.contains('multidex') ) {
                    details.useVersion "27.1.1"
                }

                if (details.requested.group == 'androidx.core'
                        && !details.requested.name.contains('androidx') ) {
                    
                }
            }
        }
    }

某个包冲突 就 在group androidx.core 并且指定Androidx 要用的版本

 

posted on 2019-09-05 14:46  诗意的活着  阅读(8810)  评论(0编辑  收藏  举报