更新到android studio 2.3后,我收到了这个错误消息。我知道这只是一个提示,因为应用程序运行正常,但这真的很奇怪。

所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本25.1.1、24.0.0。示例包括com.android.support:animatedvector-drawable:25.1.1和com.android.com/support:mediarouter-v7:24.0.0

我的成绩:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    testCompile 'junit:junit:4.12'

    compile 'com.android.support:appcompat-v7:25.1.1'
    compile 'com.android.support:support-v4:25.1.1'
    compile 'com.android.support:design:25.1.1'
    compile 'com.android.support:recyclerview-v7:25.1.1'
    compile 'com.android.support:cardview-v7:25.1.1'
    compile 'com.google.android.gms:play-services-maps:10.2.0'
    compile 'com.google.android.gms:play-services:10.2.0'

    compile 'io.reactivex.rxjava2:rxjava:2.0.1'
    compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
    compile 'com.jakewharton:butterknife:8.4.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
    compile 'com.blankj:utilcode:1.3.6'
    compile 'com.orhanobut:logger:1.15'
    compile 'com.facebook.stetho:stetho:1.4.2'

    provided 'com.google.auto.value:auto-value:1.2'
    annotationProcessor 'com.google.auto.value:auto-value:1.2'
    annotationProcessor 'com.ryanharter.auto.value:auto-value-parcel:0.2.5'

    compile 'com.mikepenz:iconics-core:2.8.2@aar'
    compile('com.mikepenz:materialdrawer:5.8.1@aar') { transitive = true }
    compile 'com.mikepenz:google-material-typeface:2.2.0.3.original@aar'
    compile 'me.zhanghai.android.materialprogressbar:library:1.3.0'
    compile 'com.github.GrenderG:Toasty:1.1.1'
    compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.8.0'
    compile 'com.github.MAXDeliveryNG:slideview:1.0.0'

    compile 'com.facebook.fresco:fresco:1.0.1'
    compile 'com.github.bumptech.glide:glide:3.7.0'

    compile 'com.google.maps.android:android-maps-utils:0.4.4'
    compile 'com.github.jd-alexander:library:1.1.0'
}

您已经定义了要用24.0.0版而不是25.1.1版编译的任何其他依赖项。请将所有依赖项的版本设置为与25.1.1相同。


您可以使用以下解决方案之一解决此问题:

更新:

从Android studio 3.0开始,它变得更加容易,因为它现在显示了一个更有用的提示,所以我们只需要遵循这个提示。例如:]1

所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。建立版本27.0.2、26.1.0。示例包括support:动画矢量可绘制:27.0.2和com.android.support:customtabs:26.1.0有一些库或工具和库的组合不兼容,或可能导致错误。其中一种不兼容性是使用不是最新版本(尤其是低于您的targetSdkV版本。)

解决方案:显式添加具有旧版本但具有新版本号的库。在我的例子中,com.android.support:customtabs:26.1.0,所以我需要添加:

build.gradle.kts(Kotlin构建脚本)

implementation("com.android.support:customtabs:27.0.2")

build.gradle(Groovy构建脚本)

implementation "com.android.support:customtabs:27.0.2"  

ie:从第二项中获取库,并使用第一项中的版本号实现它。

注意:不要忘记现在按sync,这样gradle可以重建依赖关系图,并查看是否有更多冲突。

说明:您可能会被错误消息所迷惑,因为不要使用customtabs,所以我怎么会有冲突!!好您没有直接使用它,但您的一个库在内部使用了旧版本的customtab,因此您需要直接请求它。

如果你想知道你的哪个库负责旧版本,并可能要求作者更新他的库,运行Gradle依赖性报告,请查看旧的答案以了解如何操作。

注意这一点


旧答案:

灵感来自CommonsWare答案:

运行Gradle依赖关系报告,查看您的完整树依赖项为。

从那里,您将看到您的哪个库要求不同版本的Android支持库。无论它要求什么,您都可以直接使用25.2.0版本或使用Gradle的其他冲突解决方法获得相同版本。


更新:

截至gradle插件版本:3.0编译已被实现或api所取代。

因此改用:

./gradlew -q dependencies app:dependencies --configuration debugAndroidTestCompileClasspath

或对于windows cmd:

gradlew -q dependencies app:dependencies --configuration debugAndroidTestCompileClasspath

并搜索冲突版本。

对我来说,删除com.google.android.gms:play-services:10.2.0后,错误消失了

并且只包括com.google.android.gms:播放服务位置:10.2.0和com.google.aandroid.gms播放服务地图:10.2.0,因为它们是我使用的唯一两个播放服务。

我认为gms:play服务依赖于支持库的一些旧组件,因此我们需要自己明确地添加它们。


对于AS 3.0或更旧版本。

Run:

./gradlew -q dependencies <module-name>:dependencies --configuration implementation

例子:

./gradlew -q dependencies app:dependencies --configuration implementation

如果有人知道新的gradle插件的更好方法,请告诉我。


打开项目的外部库,你会看到一些库仍然使用以前的版本,尽管你没有提到那些库,所以我的建议是只使用特定的库版本,这样可以解决你的问题。


转到文件系统上的project/.didea/libraries文件夹,查看哪些库不同。您必须在build.gradle文件中手动包含这些版本相同的库。然后,同步您的项目。

例如。:

compile 'com.android.support:appcompat-v7:25.2.0'

// Wrong library version found on 1st point
compile 'com.android.support:customtabs:25.2.0'

更新到Android Studio 2.3后,我遇到了完全相同的问题

将此行添加到依赖项解决了我的问题:

compile 'com.android.support:customtabs:25.2.0'

我通过添加


对于所有情况,不仅仅是这些版本或库:

注意这个小信息窗口,它显示了一些关于错误的信息,其中显示了您必须更改和添加的示例。

在这种情况下:

找到版本25.1.1、24.0.0。示例包括com.android.support:animatedvector-drawable:25.11和com.android.support:mediarouter-v7:24.0.0

Your

support:动画矢量可绘制:25.1.1

是版本25.1.1

com.android.support:mediarouter-v7:24.0.0

版本为24.0.0,因此您必须添加具有相同版本的mediarouter:

com.android.support:mediarouter-v7:25.1.1

对于小信息窗口显示的每个示例,都要这样做,在本例中,所有没有25.1.1版本的库都要这样。

修复指定的库后,必须同步放坡,以查看需要更改的下一个库和包。

重要:如果您没有显式地使用一个或多个指定的库,并且它会给您带来错误,这意味着另一个库正在内部使用它,那么无论如何都要显式地编译它。

您还可以使用另一种方法来查看您实际编译的所有库的版本的差异(例如运行grade依赖关系报告或转到库文件),真正的目的是编译您使用的所有库,使其具有相同的版本。


使用support-v13而不是support-v4

compile 'com.android.support:support-v13:25.2.0'

我刚刚将我的Android支持库更新为(版本:44.0.0);然后从SDK管理器>SDK工具将Android SDK工具和Emulator升级到最新版本25.3.1它解决了我的问题。


只需添加以下内容:

compile 'com.android.support:mediarouter-v7:25.2.0'

针对新SDK版本更新

compile 'com.android.support:mediarouter-v7:28.0.0-alpha3'

A) 运行渐变相关性或/gradlew相关性

B) 查看您的树,找出您的哪个依赖项正在为您无法控制的依赖项指定不同的支持库版本。

我没有意识到,如果您自己的代码完全不使用依赖项,则还会显示此警告。在我的例子中,Facebook指定了一些我没有使用的支持库,你可以在下面看到,大多数依赖项都被我自己的25.2.0规范覆盖了,用->X.X.X(*)符号表示。卡视图和自定义选项卡库没有被任何人覆盖,所以我需要自己为这些库请求25.2.0,即使我不使用它们。

+--- com.facebook.android:facebook-android-sdk:4.17.0
|    +--- com.android.support:support-v4:25.0.0 -> 25.2.0 (*)
|    +--- com.android.support:appcompat-v7:25.0.0 -> 25.2.0 (*)
|    +--- com.android.support:cardview-v7:25.0.0
|    |    \--- com.android.support:support-annotations:25.0.0 -> 25.2.0
|    +--- com.android.support:customtabs:25.0.0
|    |    +--- com.android.support:support-compat:25.0.0 -> 25.2.0 (*)
|    |    \--- com.android.support:support-annotations:25.0.0 -> 25.2.0
|    \--- com.parse.bolts:bolts-android:1.4.0 (*)

如果gradle已经警告过你并给了你一些例子。。。

示例包括com.android.support:animatedvector-drawable:25.1.1和com.android.support:mediarouter-v7:24.0.0

…如果为较低版本添加一些grep高亮显示,这会更容易,因为gradle依赖关系可能非常冗长:

./gradlew dependencies | grep --color -E 'com.android.support:mediarouter-v7|$'

我在更新到Android Studio 2.3后遇到了这个问题

在依赖项中添加这些行解决了我的问题

compile 'com.android.support:customtabs:25.2.0'  
compile 'com.android.support:palette-v7:25.2.0'

对我来说,错误是由于我导入的第三方库使用了较旧的Google Support library模块造成的。我只是将它们更新到最新版本(例如在Github上检查),错误就消失了。我建议检查你的build.gradle中包含的所有非Google库是否是最新的。


升级到android studio 2.3后,我用这两个解决了我的问题

compile 'com.android.support:animated-vector-drawable:25.0.0'
compile 'com.android.support:mediarouter-v7:25.0.0'

使用变量:执行以下操作将使您更容易确保对所有库使用相同的版本

dependencies {

    ext {
        support_library_version = '25.2.0'
        google_play_services_version = '10.2.0'
    }

    //#####################################################################
    //          Support Library
    //#####################################################################
    compile "com.android.support:appcompat-v7:${support_library_version}"
    compile "com.android.support:palette-v7:${support_library_version}"
    compile "com.android.support:design:${support_library_version}"

    //#####################################################################
    //          Google Play Services
    //#####################################################################
    compile "com.google.android.gms:play-services-auth:${google_play_services_version}"
    compile "com.google.android.gms:play-services-ads:${google_play_services_version}"
    compile "com.google.android.gms:play-services-analytics:${google_play_services_version}"

    //#####################################################################
    //          Firebase
    //#####################################################################
    compile "com.google.firebase:firebase-core:${google_play_services_version}"
    compile "com.google.firebase:firebase-auth:${google_play_services_version}"
    compile "com.google.firebase:firebase-messaging:${google_play_services_version}"

有关Google建议您如何处理此版本控制的更多信息,请参阅本文:https://developer.android.com/studio/build/index.html#top-水平,水平


我必须在gradle中添加以下行以删除错误

compile 'com.android.support:animated-vector-drawable:25.2.0'
compile 'com.android.support:preference-v7:25.2.0'
compile 'com.android.support:customtabs:25.2.0'
compile 'com.android.support:cardview-v7:25.2.0'

尝试使生成工具与支持库的版本完全相同

实例

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.0"
    defaultConfig {
        applicationId "com.itechnologyeg.*******"
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    } 
dependencies {
 compile 'com.android.support:appcompat-v7:25.0.0'
    compile 'com.android.support:animated-vector-drawable:25.0.0'
    compile 'com.android.support:mediarouter-v7:25.0.0'
    compile 'com.android.support:recyclerview-v7:25.0.0'
    compile 'com.android.support:cardview-v7:25.0.0'
    compile 'com.android.support:design:25.0.0'
}

我的问题和你的相似。这里存在一个错误!

编译“com.android.support:appcompat-v7:25.3.0”

所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本25.3.0、24.0.0。示例包括“com.android.support:animatedvector-drawable:25.3.0”和“com.andrio.support:mediarouter-v7:24.0.0”

看到这个示例包括“com.android.support:animatedvector-drawable:25.3.0”和“com.andrio.support:mediarouter-v7:24.0.0”

只需在依赖项中添加这些代码,确保版本相同。

compile 'com.android.support:animated-vector-drawable:25.3.0'
compile 'com.android.support:mediarouter-v7:25.3.0'

我以前也遇到过同样的问题,我找到了解决办法。

我刚刚添加了具有另一个版本但具有相同版本支持的库:appcompat。

例如,对于您的错误:

所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。建立版本25.1.1、24.0.0。示例包括support:动画矢量可绘制:25.1.1和com.android.support:mediarouter-v7:24.0.0

*解决方案是这样编译这些库的版本:

编译“com.android.support:mediarouter-v7:25.1.1”

-如果另一个库有相同的问题,并且有另一个版本,请在您的支持下编译它:appcompat版本

这解决了我的问题,我希望它解决了你的问题。

最美好的祝愿:)


在更新到Android Studio 2.3后也出现了同样的问题,修复方法是在build.gradle中添加以下包:

编译“com.android.support:support-v13:25.3.1”

注意:更改版本以匹配项目中使用的其他支持库包


在添加compile“com.google.android.gms:play-services:10.2.4”和compile“.com.android.support:appcompat-v7:25.3.1”后,我遇到了同样的错误。

添加动画矢量可绘制和媒体路由器库解决了这个问题。

compile 'com.google.android.gms:play-services:10.2.4'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:animated-vector-drawable:25.3.1'
compile 'com.android.support:mediarouter-v7:25.3.1'

记住这一点

compile 'com.android.support:appcompat-v7:25.2.0'

通过这个

compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:mediarouter-v7:25.3.1'

重建和良好编码


我跑了/gradlew任务--所有任务,并检查与目标版本(25.3.1)不同的依赖项

app:prepareComAndroidSupportAnimatedVectorDrawable2531Library - Prepare com.android.support:animated-vector-drawable:25.3.1
app:prepareComAndroidSupportAppcompatV72531Library - Prepare com.android.support:appcompat-v7:25.3.1
app:prepareComAndroidSupportCardviewV72531Library - Prepare com.android.support:cardview-v7:25.3.1
app:prepareComAndroidSupportCustomtabs2531Library - Prepare com.android.support:customtabs:25.3.1
app:prepareComAndroidSupportDesign2531Library - Prepare com.android.support:design:25.3.1
app:prepareComAndroidSupportMediarouterV72531Library - Prepare com.android.support:mediarouter-v7:25.3.1
app:prepareComAndroidSupportPaletteV72531Library - Prepare com.android.support:palette-v7:25.3.1
app:prepareComAndroidSupportRecyclerviewV72531Library - Prepare com.android.support:recyclerview-v7:25.3.1
app:prepareComAndroidSupportSupportCompat2531Library - Prepare com.android.support:support-compat:25.3.1
app:prepareComAndroidSupportSupportCoreUi2531Library - Prepare com.android.support:support-core-ui:25.3.1
app:prepareComAndroidSupportSupportCoreUtils2531Library - Prepare com.android.support:support-core-utils:25.3.1
app:prepareComAndroidSupportSupportFragment2531Library - Prepare com.android.support:support-fragment:25.3.1
app:prepareComAndroidSupportSupportMediaCompat2531Library - Prepare com.android.support:support-media-compat:25.3.1
app:prepareComAndroidSupportSupportV42531Library - Prepare com.android.support:support-v4:25.3.1
app:prepareComAndroidSupportSupportVectorDrawable2531Library - Prepare com.android.support:support-vector-drawable:25.3.1
app:prepareComAndroidSupportTransition2531Library - Prepare com.android.support:transition:25.3.1
app:prepareComAndroidVolleyVolley100Library - Prepare com.android.volley:volley:1.0.0
app:prepareComCrashlyticsSdkAndroidAnswers1312Library - Prepare com.crashlytics.sdk.android:answers:1.3.12
app:prepareComCrashlyticsSdkAndroidBeta124Library - Prepare com.crashlytics.sdk.android:beta:1.2.4
app:prepareComCrashlyticsSdkAndroidCrashlytics267Library - Prepare com.crashlytics.sdk.android:crashlytics:2.6.7
app:prepareComCrashlyticsSdkAndroidCrashlyticsCore2316Library - Prepare com.crashlytics.sdk.android:crashlytics-core:2.3.16
app:prepareComFacebookAndroidFacebookAndroidSdk4161Library - Prepare com.facebook.android:facebook-android-sdk:4.16.1
app:prepareComGoogleAndroidGmsPlayServicesAnalytics1026Library - Prepare com.google.android.gms:play-services-analytics:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesAnalyticsImpl1026Library - Prepare com.google.android.gms:play-services-analytics-impl:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesAuth1026Library - Prepare com.google.android.gms:play-services-auth:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesAuthBase1026Library - Prepare com.google.android.gms:play-services-auth-base:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesBase1026Library - Prepare com.google.android.gms:play-services-base:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesBasement1026Library - Prepare com.google.android.gms:play-services-basement:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesCast1026Library - Prepare com.google.android.gms:play-services-cast:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesLocation1026Library - Prepare com.google.android.gms:play-services-location:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesMaps1026Library - Prepare com.google.android.gms:play-services-maps:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesTagmanagerV4Impl1026Library - Prepare com.google.android.gms:play-services-tagmanager-v4-impl:10.2.6
app:prepareComGoogleAndroidGmsPlayServicesTasks1026Library - Prepare com.google.android.gms:play-services-tasks:10.2.6
app:prepareComGoogleFirebaseFirebaseAnalytics1026Library - Prepare com.google.firebase:firebase-analytics:10.2.6
app:prepareComGoogleFirebaseFirebaseAnalyticsImpl1026Library - Prepare com.google.firebase:firebase-analytics-impl:10.2.6
app:prepareComGoogleFirebaseFirebaseAppindexing1024Library - Prepare com.google.firebase:firebase-appindexing:10.2.4
app:prepareComGoogleFirebaseFirebaseCommon1026Library - Prepare com.google.firebase:firebase-common:10.2.6
app:prepareComGoogleFirebaseFirebaseCore1026Library - Prepare com.google.firebase:firebase-core:10.2.6
app:prepareComGoogleFirebaseFirebaseIid1026Library - Prepare com.google.firebase:firebase-iid:10.2.6
app:prepareComGoogleFirebaseFirebaseMessaging1026Library - Prepare com.google.firebase:firebase-messaging:10.2.6
app:prepareComMindorksPlaceholderview027Library - Prepare com.mindorks:placeholderview:0.2.7
app:prepareDebugAndroidTestDependencies
app:prepareDebugDependencies
app:prepareDebugUnitTestDependencies
app:prepareInfoHoang8fAndroidSegmented105Library - Prepare info.hoang8f:android-segmented:1.0.5
app:prepareIoFabricSdkAndroidFabric1316Library - Prepare io.fabric.sdk.android:fabric:1.3.16
app:prepareNoNordicsemiAndroidLog211Library - Prepare no.nordicsemi.android:log:2.1.1
app:prepareNoNordicsemiAndroidSupportV18Scanner100Library - Prepare no.nordicsemi.android.support.v18:scanner:1.0.0

在本例中,我的目标是25.3.1,并且在运行此命令时有一些针对不同版本的依赖关系。诀窍是在这个列表中识别针对以前版本的依赖项,并通过在Gradle中导入最新版本的依赖关系来覆盖这些依赖项。


只有一种方法。。。你必须手动完成。。。转到build.gradle检查,将所有依赖项分配给相同的版本。。它应该会起作用。。


确保所有Facebook SDK依赖项使用项目的相同支持库版本:

dependencies {
    // Facebook SDK dependencies, excluding Bolts
    compile "com.android.support:appcompat-v7:25.4.0"
    compile "com.android.support:cardview-v7:25.4.0"
    compile "com.android.support:customtabs:25.4.0"
    compile "com.android.support:design:25.4.0"

    compile "com.facebook.android:facebook-android-sdk:4.23.0"
}

另一件可能导致此问题的事情是,如果您有这样的声明:

compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:+'

那+意味着采用最新版本,可能是比25.3.1更高的版本。将+替换为25.3.1这样的特定版本:

compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'

这将解决问题


将此添加到build.gradle(模块:应用程序)的末尾:

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

   }
}

确保将“25.3.1”替换为要用于所有依赖项的android支持库版本,该版本不应低于compile sdk版本

比重新同步渐变


突出显示错误并按“ALT+ENTER”,您将看到一个选项:

添加库依赖项>编辑意图设置

这会将您带到一个菜单,在那里您将看到与支持兼容不同的特定问题支持依赖关系。在gradle(com'XXX')中创建其依赖项,并将其版本设置为与support-compat的版本匹配。同步渐变,你就完成了。


如果appcompat上出现相同错误

implementation 'com.android.support:appcompat-v7:27.0.1'

然后添加设计解决了这个问题。

implementation 'com.android.support:appcompat-v7:27.0.1'
implementation 'com.android.support:design:27.0.1'

对我来说

implementation 'de.mrmaffen:vlc-android-sdk:2.0.6'

包括appcompat-v7:23.1.1

.didea/库

没有vlc,仅appcompat就足够了。


implementation 'com.android.support:appcompat-v7:26.1.0'

在这行之后你必须在你的成绩中添加新的行

implementation 'com.android.support:design:26.1.0'

以下是修复此警告的流程

建筑物玻璃

android {
    compileSdkVersion ... // must same version (ex: 26)
    ...
}

dependencies {
    ...
    compile 'any com.android.support... library'  // must same version (ex: 26.0.1)
    compile 'any com.android.support... library'  // must same version (ex: 26.0.1)

    ...
    compile ('a library B which don't use 'com.android.support...' OR use SAME version of 'com.android.support'){
         // do nothing 
    }

    ...
    compile ('a library C which use DIFFERENT 'com.android.support...' (ex:27.0.1) { 
        // By default, if use don't do anything here your app will choose the higher com.android.support... for whole project (in this case it is 27.0.1)

        // If you want to use 26.0.1 use
        exclude group: 'com.android.support', module: '...' (ex module: 'appcompat-v7') 
        exclude group: 'com.android.support', module: 'another module'
        ...

        // If you want to use 27.0.1 do 
        Upgrade `compileSdkVersion` and all 'com.android.support' to 27.0.1.
        (It may be a good solution because the best practice is always use latest `compileSdkVersion`.  
        However, use 26 or 27 is base on you for example higher library may have bug)
    }
}

查看/验证应用程序中所有库的依赖关系打开终端并运行/gradlew应用程序:依存关系

要查看应用程序中特定库的依赖项,请遵循以下教程:-如何在Gradle中排除特定依赖项的依赖项

希望能有所帮助


我必须在gradle中添加以下行以删除错误这取决于您使用的与appcompat相同的版本

compile 'com.android.support:appcompat-v7:26+'

compile 'com.android.support:mediarouter-v7:26+'

解决冲突的另一种方法是强制所有依赖项使用正确的版本,如下所示:

dependencies {
            configurations.all {
                resolutionStrategy.eachDependency { DependencyResolveDetails details ->
                    if (details.requested.group == 'com.android.support' && details.requested.name == 'support-v4') {
                        details.useVersion "27.0.2"
                    }
                }
    ...
    }

https://docs.gradle.org/current/userguide/customizing_dependency_resolution_behavior.html


正如您已经看到了上面的所有答案和评论,但这个答案是为了澄清一些新开发人员可能不容易得到的东西。

./gradlew-q依赖项app:依赖项--配置编译

毫无疑问,上面这条线将挽救你的生命,但如何从上面这条线上的结果中得到准确的点。

当您从上面的命令获得所有依赖关系图或列表时,您必须搜索代码中获得的冲突版本号。请参见下图。

在上面的图片中,您可以看到23.4.0正在创建问题,但这在我们的grade文件中找不到。因此,现在这个版本号(23.4.0)将保存我们。当我们有了这个编号时,我们将在上面命令结果的结果中找到这个编号,并直接在gradle文件中导入该依赖项。请参见下图以获得清晰的视图。

您可以清楚地看到com.android.support:cardview-v7:23.4.0和com.android.com/support:customtabs:23.4.0正在使用导致问题的版本。现在只需从依赖项中复制这些行列出并在gradle文件中显式使用,但带有更新的版本链接

实现“com.android.support:cardview-v7:26.1.0”实现“com.android.support:customtabs:26.1.0”


如果您在实现以下提到的所有新库后遇到问题。我在这个“com.android.support:appcompat-v7:27.1.0”兼容版本上遇到了上述相同的问题。

implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support:design:27.1.0'
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support:mediarouter-v7:27.1.0'
implementation 'com.android.support:recyclerview-v7:27.1.0'
implementation 'com.android.support:cardview-v7:27.1.0'
implementation 'com.android.support:support-v13:27.1.0'
implementation 'com.android.support:support-v4:27.1.0'

我只是替换这

'com.android.support:appcompat-v7:27.1.0'

到此为止

'com.android.support:appcompat-v7:27.0.1'

我有这个:

dependencies {
   implementation fileTree(dir: 'libs', include: ['*.jar'])
   implementation 'com.android.support:appcompat-v7:27.1.1'
   implementation 'com.android.support:design:27.1.1'
   implementation 'com.android.support:support-v4:27.1.1'
   implementation 'com.google.firebase:firebase-auth:12.0.1'
   implementation 'com.google.firebase:firebase-firestore:12.0.1'
   implementation 'com.google.firebase:firebase-messaging:12.0.1'
   implementation 'com.google.android.gms:play-services-auth:12.0.1'
   implementation'com.facebook.android:facebook-login:[4,5)'
   implementation 'com.twitter.sdk.android:twitter:3.1.1'
   implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
   implementation 'org.jetbrains:annotations-java5:15.0'
   implementation project(':vehiclesapi')
   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'
}

并得到以下错误:

解决方案很简单-主要依赖项都是正确的,因此留下了任何第三方依赖项。一个接一个地删除,直到找到罪魁祸首,结果是facebook!它使用的是27.0.2版本的android支持库。我试图添加cardview 27.1.1版本,但这并不奏效,因为解决方案仍然足够简单。

dependencies {
   implementation fileTree(dir: 'libs', include: ['*.jar'])
   implementation 'com.android.support:appcompat-v7:27.1.1'
   implementation 'com.android.support:design:27.1.1'
   implementation 'com.android.support:support-v4:27.1.1'
   implementation 'com.google.firebase:firebase-auth:12.0.1'
   implementation 'com.google.firebase:firebase-firestore:12.0.1'
   implementation 'com.google.firebase:firebase-messaging:12.0.1'
   implementation 'com.google.android.gms:play-services-auth:12.0.1'
   implementation('com.facebook.android:facebook-login:[4,5)'){
       // contains com.android.support:v7:27.0.2, included required com.android.support.*:27.1.1 modules
    exclude group: 'com.android.support'
   }
   implementation 'com.android.support:cardview-v7:27.1.1' // to replace facebook sdk's cardview-v7:27.0.2.
   implementation 'com.twitter.sdk.android:twitter:3.1.1'
   implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
   implementation 'org.jetbrains:annotations-java5:15.0'
   implementation project(':vehiclesapi')
   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'
}

我刚刚添加的解决方案

//noinspection GradleCompatible

我构建来测试我的应用程序,一切正常。


花了大约5个小时后,这个解决方案对我有效。。

如果您还没有:

xmlns:tools="http://schemas.android.com/tools"

例子:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.winanainc"
    android:versionCode="3"
    android:versionName="1.2"
    xmlns:tools="http://schemas.android.com/tools">

然后在应用程序中添加这个元标记以覆盖构建工具版本,在本例中,我选择了25.3.1版本

<application>
   ...
   ..
    <meta-data
        tools:replace="android:value"
        android:name="android.support.VERSION"
        android:value="25.3.1" />
</application>

对我来说,我通过添加:compile“com.android.support:design:<version>”解决了错误


所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本25.1.1、24.0.0。示例包括com.android.support:animatedvector-drawable:25.1.1和com.android.com/support:mediarouter-v7:24.0.0

当我们使用Google Play Services时,通常会出现此警告,因为它使用支持库作为依赖项。

我们大多数人都不知道我们可以覆盖Google Play Services中使用的支持库。当我们使用以下依赖项时:

implementation "com.android.support:animated-vector-drawable:25.1.1"

它隐含地依赖于com.android.support:mediarouter-v7:25.1.1。但它与谷歌Play服务的依赖性冲突,后者是com.android.support:mediarouter-v7:24.0.0。因此,我们需要通过显式使用库来重写它:

implementation "com.android.support:mediarouter-v7:25.1.1"

然后,依赖项块将包括这两个项,如下所示:

dependencies {
    implementation "com.android.support:animated-vector-drawable:25.1.1"
    implementation "com.android.support:mediarouter-v7:25.1.1"

    ...
}

我有同样的问题,但我通过添加那三条线

implementation 'com.android.support:design:27.1.1'
implementation "com.android.support:customtabs:27.1.1"
implementation 'com.android.support:mediarouter-v7:27.1.1'

现在一切都很完美


解决这个问题的最佳方法是实现AndroidStudio建议的所有“com.android.support:…”

(无论您使用的是哪种支持版本–27.1.1、28.0.0等)

将光标放在错误行,例如。

implementation 'com.android.support:appcompat-v7:28.0.0'

Android Studio将向您建议“com.Android.support:…”是不同于'com.android.support:appcompat-v7:28.0.0'

实例

所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本28.0.0、27.1.0和27.0.2。示例包括com.android.support:animatedvector-drawable:28.0.0和com.android.com/support:exifinterface:27.1.0

所以添加com.android.support:animatedvector-drawable:28.0.0&com.android.support:exifinterface:28.0.0。现在同步渐变文件。

一个接一个地尝试实现所有建议的“com.android.support:…”,直到此行实现“com.andrio.support:appcompat-v7:28.0.0”中没有错误

就我而言,我补充道

implementation 'com.android.support:appcompat-v7:28.0.0'

implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:exifinterface:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:customtabs:28.0.0'
implementation 'com.android.support:support-media-compat:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'

所有这些依赖关系,对你来说可能会有所不同。


此错误是由于滑动库造成的。尝试毕加索或其他图像库


包括以下行:

implementation 'com.android.support:support-v4:27.1.1'

确保您正在使用android studio插件3+


可以使用以下方法解决问题:

打开AndroidManifest.xml文件。单击底部的“合并清单”选项在右侧,它将显示其他清单文件。以下是不同依赖项的单独清单文件,这些依赖项是您包含的,或者是由于其他依赖项的影响而包含的。找出错误消息中提到的依赖项。单击它以打开其清单文件。如果您的错误消息显示要更改元数据中的android:value属性,那么这里就是进行更改的地方。更改值和显示不匹配版本号的其他位置,并使用build.gradle文件中包含的版本进行更改。现在同步项目,您就可以开始了


在搜索和组合答案后,2018年版本的这个问题对我很有用:

1) 在导航选项卡上,将其更改为项目视图

2) 导航到[YourProjectName]/.didea/libraries/

3) 删除以Gradle__com_android_support_[libraryName]开头的所有文件

例如:Gradle__com_android_support_animed_vector_drawable_26__0.xml

4) 在渐变文件中定义一个变量,并使用它来替换版本号,如${variableName}

Def变量:

ext {
    support_library_version = '28.0.0' //use the version of choice
}

使用变量:

implementation "com.android.support:cardview-v7:${support_library_version}"

示例渐变:

dependencies {
    ext {
        support_library_version = '28.0.0' //use the version of choice
    }

    implementation fileTree(include: ['*.jar'], dir: 'libs')

    implementation "com.android.support:animated-vector-drawable:${support_library_version}"
    implementation "com.android.support:appcompat-v7:${support_library_version}"
    implementation "com.android.support:customtabs:${support_library_version}"
    implementation "com.android.support:cardview-v7:${support_library_version}"
    implementation "com.android.support:support-compat:${support_library_version}"
    implementation "com.android.support:support-v4:${support_library_version}"
    implementation "com.android.support:support-core-utils:${support_library_version}"
    implementation "com.android.support:support-core-ui:${support_library_version}"
    implementation "com.android.support:support-fragment:${support_library_version}"
    implementation "com.android.support:support-media-compat:${support_library_version}"
    implementation "com.android.support:appcompat-v7:${support_library_version}"
    implementation "com.android.support:recyclerview-v7:${support_library_version}"
    implementation "com.android.support:design:${support_library_version}"

}

我的问题解决了添加以下最新的dependencyimplementation“com.google.firebase:firebaseauth:16.0.4”


在2018年更新此错误时,从项目结构中添加实现

implementation 'com.android.support:support-v13:28.0.0'

在项目模式-->外部库中,您可以在那里找到问题所在我正在使用版本28和我找到的外部库support:support-media-compat-26.0.0,这是错误。

实施后支持v13并正在运行


使用新版本的android studio 3.x非常简单。

只需复制低于当前版本的版本,然后使用与当前版本相同的版本号显式添加。

实例

找到版本27.1.1、27.1.0。示例包括com.android.support:animatedvector-drawable:27.1.1和com.android.com/support:exifinterface:27.1.0

只需复制版本com.android.support:exifinterface:27.1.0并将其更改为com.android.com/support:exifinterface:227.1.1,使其与当前使用的版本相同,然后将其添加到gradle依赖项中,如下所示。

implementation 'com.android.support:exifinterface:27.1.1'

注意:完成后,不要忘记单击编辑器顶部的“立即同步”。


添加这些应用程序级依赖项

implementation 'com.android.support:asynclayoutinflater:28.0.0'
implementation 'com.android.support:exifinterface:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:support-media-compat:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'

在升级到android studio 3.4和sdk版本到28.0.0后,我遇到了这个问题。应用以下依赖关系为我解决了问题。

    implementation 'com.android.support:exifinterface:28.0.0'

将以下实现语句添加到依赖项部分。(如果它显示一些App Compat库不匹配错误,那么我们必须重新实现所有不匹配的支持库。我们可以通过将光标放在错误上找到不匹配的库。按快捷键ctrl+F1在android studio中显示完整的详细信息。)

implementation 'com.android.support:exifinterface:28.0.0'
implementation 'com.android.support:asynclayoutinflater:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:support-media-compat:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'

这很简单,只需强制所有v7和v4库使用您在依赖项之前设置的库版本。

configurations.all {
                    // To resolve the conflict for com.android.databinding
                    // dependency on support-v4:21.0.3
                    resolutionStrategy.force 'com.android.support:support-v4:28.0.0'
                    resolutionStrategy.force 'com.android.support:support-v7:28.0.0'
                }

我的项目中有这些依赖项:

implementation 'com.android.support.constraint:constraint-layout:1.1.3'

implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-media-compat:28.0.0'

implementation 'com.google.android.gms:play-services-maps:16.1.0'

implementation 'com.google.firebase:firebase-database:17.0.0'
implementation 'com.google.firebase:firebase-storage:17.0.0'
implementation 'com.google.firebase:firebase-messaging:18.0.0'

implementation 'com.firebaseui:firebase-ui-storage:0.6.0'

到目前为止,似乎没有什么问题,但我得到了这样的信息:

找到版本28.0.0、23.4.0。示例包括com.android.support:动画矢量可绘制:28.0.0和支持:palette-v7:23.4。

然后我做了:

$ ./gradlew -q dependencies app:dependencies --configuration debugAndroidTestCompileClasspath >> dep.txt

在文件中,我搜索了调色板,发现它被firebase存储所使用:

\--- com.firebaseui:firebase-ui-storage:0.6.0
     +--- com.android.support:appcompat-v7:23.4.0 -> 28.0.0 (*)
     +--- com.android.support:palette-v7:23.4.0

添加后:

implementation 'com.android.support:palette-v7:28.0.0'

似乎已解决,没有更多错误。

//干杯