gpt4 book ai didi

android - 所有com.android.support库都必须使用完全相同的 'com.android.support:appcompat-v7:28.0.0-rc01'版本

转载 作者:行者123 更新时间:2023-12-03 06:29:17 26 4
gpt4 key购买 nike

好的,大家好我是新来的(这是我的第一篇文章,因此,如果我做错了任何事情,请原谅我,让我知道!)。您能帮我解决这个问题吗?我真的被卡住了。检查以下屏幕截图上的红色带下划线的行(依赖项)。

Android错误:

所有com.android.support库都必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本28.0.0-rc01,26.1.0。示例包括com.android.support:animated-vector-drawable:28.0.0-rc01和com.android.support:support-media-compat:26.1.0 less ...(Ctrl + F1)
检查信息:库,工具和库的某些组合不兼容或可能导致错误。一种不兼容的情况是使用不是最新版本(或特别是低于targetSdkVersion的版本)的Android支持库版本进行编译。

屏幕截图:
https://imgur.com/a/4C2Sxg3

我尝试了以下方法:

All com.android.support libraries must use the exact same version specification

All com.android.support libraries must use the exact same version specification (mixing version can lead to runtime crashes)

build.gradle:

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.firebase:firebase-auth:16.0.3'
implementation 'com.google.firebase:firebase-core:16.0.3'
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso core:3.0.2' }

最佳答案

嘿,欢迎并祝贺您!

您正在使用一些依赖项,这些依赖项也可能具有transitive dependencies。这意味着您正在针对某些API编译代码,而您的依赖项已针对某些API进行了编译(可能略有不同)。所以gradle困惑于采用哪个版本的依赖-您的依赖还是第三方的传递。如果它是自动的,则当您或您的依赖项尝试调用已更改或在该共享依赖项版本之一中不存在的方法或类时,可能会导致运行时崩溃。

您可以使用gradle解决依赖关系:

./gradlew dependencies

甚至更好:
./gradlew dependencies | grep <name of the conflicting dependency> -B 20 -A 20

解决这个问题的Android世界中通常的方法是强制使用此依赖关系的特定版本(通常是最新版本):
  configurations.all {
resolutionStrategy {
force <exact dependency version>
}
}

另外两个:
  • 当依赖项版本之间的差距不是向后兼容的
  • 时,有时这可能不起作用
  • other ways of forcing, specifying, excluding dependencies
  • 关于android - 所有com.android.support库都必须使用完全相同的 'com.android.support:appcompat-v7:28.0.0-rc01'版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55944045/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com