gpt4 book ai didi

java - 如何修复此 "All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes)"

转载 作者:数据小太阳 更新时间:2023-10-29 02:43:35 25 4
gpt4 key购买 nike

我正在创建一个使用 firebase 身份验证进行登录和注册的应用程序,但我在运行该应用程序后总是突然崩溃。我在应用级别的 Gradle.build 文件中收到警告。警告说

All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 28.0.0, 26.1.0. Examples include com.android.support:animated-vector-drawable:28.0.0 and com.android.support:support-media-compat:26.1.0

我试过将 com.android.support:appcompat-v7:28.0.0 更改为 v7:26.0.1 和 27.1.0,但都没有解决问题。

我的build.gradle文件如下:

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.project.tck.rescueme_responder"
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}

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

我希望在我运行应用程序时使用 FireBase 进行身份验证的登录名,但每次运行时应用程序都会崩溃。

最佳答案

有个类似的问题here
我想问题出在您使用的直接依赖项的传递依赖项中,因为我没有在您的 build.gradle 文件中看到它们被明确引用。其中一些使用一个版本 (28.0.0) 而另一些 (26.1.10)。
上面引用的答案提供了一些解决方法。此外,根据您使用的 Gradle 版本(如果它是 >= 4.6 ),您可以 add constraints for those transitive dependencies在您的 build.gradle 文件中确保他们使用您想要的版本。

关于java - 如何修复此 "All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes)",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54281208/

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