首页 > 解决方案 > Firebase 消息错误(仅限 Android) - 新推送通知的致命异常

问题描述

我们目前正在使用 Flutter 开发一个接收推送通知的应用程序。在我们进行最后一次 Flutter 更新之前一切正常,现在我们在 Firebase 中得到了一个致命异常 - 仅限 Android 上的 FlutterFirebaseMessagingService。

我在颤动的 git 上找不到任何关于此的内容,因此可能是 android 问题。

当应用使用 Firebase 函数和 Firebase 消息传递获得新通知时,就会发生这种情况。我们使用的样本数据:

{
  notification: {
        title: „hello",
        body: „You got a new Message"
    },
    data: {
        click_action: "FLUTTER_NOTIFICATION_CLICK",
        additional: additional, // some integer values
        message: messageText // Same as message body above
    },
    apns: {
        payload: {
            aps: {
                badge: count,
            },
        },
    },
    token: deviceToken //this is a correct device id
}


admin.messaging().send(message)

完整的设备日志

E/AndroidRuntime(3436):致命例外:Firebase-FlutterFirebaseMessagingService E/AndroidRuntime(3436):进程:de.mandarinmedien.jutta,PID:3436 E/AndroidRuntime(3436):java.lang.NoSuchMethodError:没有静态方法zzc(Landroid /content/Context;)Lcom/google/firebase/iid/zzz; 在 Lcom/google/firebase/iid/zzz 类中;或其超类(“com.google.firebase.iid.zzz”的声明出现在 /data/app/de.mandarinmedien.jutta-gn2RX8mWXXycpVEEEZIaNQ==/base.apk:classes3.dex)E/AndroidRuntime(3436):在 com.google.firebase.messaging.FirebaseMessagingService.zzd(未知来源:110)E/AndroidRuntime(3436):在 com.google.firebase.iid.zzg.run(未知来源:4)E/AndroidRuntime(3436):在 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) E/AndroidRuntime(3436):

是否有人已经有此错误的经验或知道如何解决它?

编辑:android/app/build.gradle:

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withReader('UTF-8') { reader ->
        localProperties.load(reader)
    }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

def keystorePropertiesFile = rootProject.file("key.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))

android {
    compileSdkVersion 27

    lintOptions {
        disable 'InvalidPackage'
    }

    defaultConfig {
        applicationId ******
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "0.1"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }

    signingConfigs {
        release {
            keyAlias keystoreProperties['keyAlias']
            keyPassword keystoreProperties['keyPassword']
            storeFile file(keystoreProperties['storeFile'])
            storePassword keystoreProperties['storePassword']
        }
    }
    buildTypes {
        release {
            signingConfig signingConfigs.debug
            minifyEnabled true
            useProguard true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

        }
    }
}

flutter {
    source '../..'
}

dependencies {
    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'
    implementation 'com.google.firebase:firebase-perf:16.0.0'
}

apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.firebase-perf'

安卓/build.gradle

buildscript {
    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.google.gms:google-services:3.2.1'
        classpath 'com.google.firebase:firebase-plugins:1.1.5'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
    project.configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.android.support'
                    && !details.requested.name.contains('multidex')) {
                details.useVersion "27.1.1"
            }
        }
    }

}

task clean(type: Delete) {
    delete rootProject.buildDir
}

标签: androidfirebaseflutterfirebase-cloud-messaging

解决方案


错误消息提示iid;实例 ID 服务。这可能由firebase-core; 虽然它也可能是不兼容的版本,这偶尔会导致未知的方法和领域。

尝试更新:

classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.google.gms:google-services:3.2.1'

到当前版本:

classpath 'com.android.tools.build:gradle:3.2.0'
classpath 'com.google.gms:google-services:4.1.0'

firebase-perf插件必须在顶部,而不是底部:

apply plugin: 'com.android.application'
apply plugin: 'com.google.firebase.firebase-perf'

该库也已过时(可能需要firebase-core):

implementation 'com.google.firebase:firebase-core:16.0.4'
implementation 'com.google.firebase:firebase-perf:16.1.2'

虽然我真的很想知道,为什么没有依赖FCM(正如人们所期望的那样):

implementation 'com.google.firebase:firebase-messaging:17.3.3'

一旦针对 API 级别 28,还建议设置通知通道:

<meta-data
    android:name="com.google.firebase.messaging.default_notification_channel_id"
    android:value="@string/default_notification_channel_id" />

...支持库将是28.0.0当前版本。

备注:无效的 JSON 语法可能(很可能)来自错误地发布 - 否则其他平台也无法运行;我刚刚添加了一个解释它有什么问题并删除了硬编码值。堆栈跟踪讲述了一个完全不同的故事,没有暗示任何无效的语法。


推荐阅读