更新后android.support库不兼容 [英] android.support libraries not compatible together after updation

查看:907
本文介绍了更新后android.support库不兼容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚更新了我的gradle插件,然后得到警告,告诉我更新一些我的实现。我刚刚升级了两个

I just updated my gradle plugin and then got warnings telling me to update some of my implementations. I just upgraded both


com.android.support:appcompat

com.android.support:appcompat



and


com.android.support:design

改为27.1.1。但现在我得到一个警告说:

to 27.1.1. But now I am getting a warning saying

All com.android.support libraries must use the exact same version 
specification (mixing versions can lead to runtime crashes). Found versions 
27.1.1, 26.1.0. Examples include com.android.support:animated-vector-
drawable:27.1.1 and com.android.support:customtabs:26.1.0
There are some combinations of libraries, or tools and libraries, that are 
incompatible, or can lead to bugs. One such incompatibility is compiling 
with a version of the Android support libraries that is not the latest 
version (or in particular, a version lower than your targetSdkVersion).

以下是Gradle的应用程序模块中的依赖关系:

Here is the dependencies in the app module of gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "aheschl.studyup"
        minSdkVersion 19
        targetSdkVersion 27
        versionCode 9
        versionName '3.1.1'
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.google.firebase:firebase-database:15.0.0'
    implementation 'com.google.firebase:firebase-auth:15.0.0'
    implementation 'com.google.android.gms:play-services-ads:15.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    implementation 'com.android.support:design:27.1.1'
}

我知道其中一个库需要升级版本,但我找不到哪些。我有选择只是为了压制警告,但我的应用程序正在生产,我不想这样做。感谢您的帮助

I understand one of the libraries needs the version to be upgraded but I can not find out which ones. I have the option just to suppress the warning but my app is in production and I don't want to do that. Thanks for any help

推荐答案

在您的根项目中放入这样的内容:

Put something like this in your root project:

Map<String,String> versionOverrides = [
        'com.android.support:support-v7' : '27.1.1'
        ...
]

def overrideDependencies = { Project project ->
    project.configurations.all {
        // See https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.ResolutionStrategy.html
        resolutionStrategy {
            eachDependency { DependencyResolveDetails details ->
                String overrideVersion = versionOverrides.get(details.requested.group + ":" + details.requested.name)
                if (overrideVersion != null && details.requested.version != overrideVersion) {
                    logger.debug("Overriding dependency ${details.requested.group}:${details.requested.name} " +
                            "version ${details.requested.version} --> $overrideVersion")
                    details.useVersion overrideVersion
                }
            }
        }
    }
}

subprojects { project ->
    overrideDependencies(project)
}

这篇关于更新后android.support库不兼容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆