gpt4 book ai didi

android - 添加Firebase后,所有com.android.support库都必须使用完全相同的版本规范

转载 作者:行者123 更新时间:2023-12-03 05:45:27 25 4
gpt4 key购买 nike

我的Android Studio显示此错误。

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:support-media-compat:26.1.0 less... (Ctrl+F1) 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).


    implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
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:15.0.0'

最佳答案

com.google.firebase:firebase-core:15.0.0这样的主题取决于较旧的支持库varsion(26.1.0)。
已经发布了15.0.2版本,因此您可以尝试:

  • 使用Firebase核心的15.0.2版本。可能是基于最新的支持库
  • 忽略此消息,因为它是警告,而不是错误,可能您的应用程序可以正常使用。 (不推荐,但可以使用)
  • 将您使用的支持库版本降级为26.1.0,以便它们是同一版本。至少在Google根据最新的支持lib版本发布firebase之前。 (如果#1不起作用,建议的方式)
  • 关于android - 添加Firebase后,所有com.android.support库都必须使用完全相同的版本规范,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50391174/

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