Android Studio Gradle 解决依赖冲突


1. 查看依赖树

./gradlew dependencies
image.png

2. 解决依赖冲突

一旦在构建中存在依赖冲突,开发人员需要决定哪个版本的库最终包含在构建中,有许多解决冲突的方法。

1. 全部排除

将依赖冲突的库包含com.android.support都排除掉

 api("com.afollestad.material-dialogs:core:0.9.5.0") {
        exclude group: 'com.android.support'
 }

2. 逐个排除

compile('junit:junit:4.12'){
  exclude group : 'org.hamcrest',module:'hamcrest-core'
}
//最终,如果我们向包含1.3版本到构建中,我们可以从“mockito"中排除他
androidTestCompile('org.mockito:mockito-core:1.10.19'){
  exclude group : 'org.hamcrest',module:'hamcrest-core'
}

3. 显式依赖

在build.gradle中显示定义冲突的库,在这种情况下,我们需要明确提出我们想要包含在任何一个配置的最终构建中的库的版本。

compile 'junit:junit:4.12'
androidTestCompile 'org.mockito:mockito-core:1.10.19'
androidTestCompile 'org.hamcrest:hamcrest-core:1.3'

如果多个依赖具有冲突版本的依赖或传递依赖的话,则不是从每个依赖性中排除模块,而是可以简单的使用期望的版本号来定义冲突依赖。
这种是一种更清洁的解决冲突的方法,但缺点是,当更新实际的依赖关系的时候,开发人员需要更新冲突的库。

4. 强制依赖

强制使用某个统一的依赖版本

单个库的强制依赖

implementation('androidx.appcompat:appcompat:1.1.0-rc01'){
    force = true
}

全局强制依赖

//在app.gradle 中的Android闭包中使用
android{
      configurations.all {
           resolutionStrategy.force 'com.android.support:appcompat-v7:28.0.0'
           resolutionStrategy.force 'com.android.support:support-v4:28.0.0'
           resolutionStrategy.force 'com.android.support:animated-vector-drawable:28.0.0'
           resolutionStrategy.force 'com.android.support:support-media-compat:28.0.0'
      }
}

//在build.gradle 中设置工程全局强制依赖
allprojects{
      configurations.all {
           resolutionStrategy.force 'com.android.support:appcompat-v7:28.0.0'
           resolutionStrategy.force 'com.android.support:support-v4:28.0.0'
           resolutionStrategy.force 'com.android.support:animated-vector-drawable:28.0.0'
           resolutionStrategy.force 'com.android.support:support-media-compat:28.0.0'
      }
}

5. Gradle脚本排除

通过Grovvy脚本修改版本号解决冲突;
在其存在冲突的module中的build.gradle文件中加入下面代码,原理就是通过遍历所有依赖,并修改指定库的版本号;
其中requested.group == 'com.android.support' com.android.support表示要修改的依赖库;
details.useVersion '28.0.0', 28.0.0表示要修改的版本号

configurations.all {
    resolutionStrategy.eachDependency { details ->
        def requested = details.requested
        if (requested.group == 'com.android.support') {
            if (!requested.name.startsWith("multidex")) {
                details.useVersion '28.0.0'
            }
        }
    }
}

6.module排除

configurations {
    all*.exclude group: 'com.google.guava', module: 'listenablefuture'
}

7. 关闭依赖传递

关闭传递依赖之后,例如如下例子,就不会依赖appcompat所依赖的库

implementation('androidx.appcompat:appcompat:1.1.0-rc01'){
    transitive = false
}

也可以全局关闭

configurations.all {
   transitive = false
}

8.替换Support为Androidx

如果冲突的库是Support库,那么可以将所有suppot库替换为Androidx

implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
implementation 'androidx.recyclerview:recyclerview:1.1.0-beta01'
implementation 'androidx.core:core-ktx:1.2.0-alpha02'
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation "androidx.constraintlayout:constraintlayout:2.0.0-beta2"
implementation 'androidx.core:core-ktx:1.2.0-alpha02'

然后在gradle.properties中配置

#启用Androidx
android.useAndroidX=true
#迁移其他依赖
android.enableJetifier=true

你可能感兴趣的:(Android Studio Gradle 解决依赖冲突)