所有gms/firebase libaries必须使用完全相同的版本。找到版本 15.1.0、15.0.2、15.0.1、15.0.0。

2022-09-04 01:54:52

尝试在我的项目中实现 Firebase。

Gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
    applicationId "com.ghaleh.myapplication"
    minSdkVersion 16
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
     }


buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:support-media-compat:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
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-messaging:15.0.2'
}
apply plugin: 'com.google.gms.google-services'

我得到这个错误:

All gms/firebase libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 15.1.0, 15.0.2, 15.0.1, 15.0.0. Examples include com.google.firebase:firebase-iid:15.1.0 and com.google.android.gms:play-services-measurement-base:15.0.2

根据Google的Maven Repository,最新版本是15.0.2,我收到错误,所以我无法升级到更高的版本或实现匹配版本。firebase-messagingfirebase-iid:15.1.0firebase-messagingfirebase-iid:15.1.0

我已经尝试了这里推荐的其他解决方案:123,但没有一个是有用的。

我也尝试过这个(但它似乎不是一个合适的解决方案):

implementation ('com.google.firebase:firebase-messaging:15.0.2') {
    exclude group: "com.google.android.gms"
}

我得到这个错误:

Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForBazaarDebug'.
java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex

提前致谢。


答案 1

您需要更新插件才能使用:google-service

classpath 'com.google.gms:google-services:3.3.0'

为了能够避免这些错误,还可以升级到Android Studio 3.1

如果您没有使用 Android Studio 3.1 开发您的应用程序,则需要升级才能在 IDE 中获得正确的版本检查行为。

更多信息和要遵循的步骤:

宣布新的 SDK 版本控制

编译未完成:程序类型已存在:com.google.android.gms.internal.measurement.zzabn


答案 2

您可能需要更新

1.Playservice library
2.build tools
3.gradle wrapper
4.AndroidStudio
5.Migration to androidX
6.build tool version

在做了这些事情之后,我终于得到了一个适当的构建!!!


推荐