记录接入Firebase Cloud Messaging出现的一

2022-11-24  本文已影响0人  伪装的狼

因为产品需要,接入Firebase Cloud Messaging实现消息通知,接入的时候踩了一些坑这里记录一下。

  1. 最开始跟着Firebase教程在build.gradle引入

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

    编译报错,引入的库出现类冲突:

    Duplicate class com.google.firebase.iid.FirebaseInstanceIdReceiver found in modules jetified-firebase-iid-19.0.0-runtime (com.google.firebase:firebase-iid:19.0.0) and jetified-firebase-messaging-23.1.0-runtime (com.google.firebase:firebase-messaging:23.1.0)
    

    com.google.firebase:firebase-messaging:23.1.0和com.google.firebase:firebase-iid:19.0.0库里面都有一个FirebaseInstanceIdReceiver类,但是继承的基类不一致,所以不能通过exclude group:移除。随后尝试降低版本到com.google.firebase:firebase-messaging:21.1.0,编译通过。

  2. 然后更新com.google.firebase:firebase-analytics-ktx:21.0.0库版本到21.2.0,编译出现问题:

C:/Users/Admin/.gradle/caches/transforms-3/719f46791576794f028e9d76950ddae9/transformed/jetified-kotlin-stdlib-common-1.7.10.jar!/META-INF/kotlin-stdlib-common.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.7.1, expected version is 1.5.1.

经过一番百度,最后更新kotlin-gradle-plugin版本号为:1.6.0

classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0"

编译通过。

  1. 随后,测试的时候发现,在Android 12出现了新的问题,Firebase在控制台发送测试设备的消息通知之后,点击通知栏的消息无法进入App,很奇怪。此时如果进入App需要重新启动,也就是该进程被杀掉了,猜测是点击消息通知的时候出现了Crash。在Android 11以及以下是正常的,另外如果App切到后台,然后等待接收到通知,此时切换到前台,再下拉通知栏,点击该App的通知,那么可以正常从App启动页进入。随后调试发现,

    NotificationService: Indirect notification activity start (trampoline) from com.xxx.xxxx.xxx blocked
    

    经过一番搜索之后发现,从Android 12开始,禁用了点击通知先打开Service/BroadCast,在从里面启动Activity这种方式,必须是直接启动Activity。猜测com.google.firebase:firebase-messaging:21.1.0版本就是用这种方式实现的消息通知。那么又只能回到问题1,继续解决问题1。

  2. 尝试用其它方式引入firebase-messaging

    implementation platform('com.google.firebase:firebase-bom:31.1.0')
    implementation 'com.google.firebase:firebase-messaging'
    

    编译依然是类冲突。最后尝试指定com.google.firebase:firebase-iid:19.0.0的版本,引入最新版

    implementation 'com.google.firebase:firebase-iid:21.1.0'
    

    编译通过。

  3. 继续发送测试消息通知,尝试用Android 12机器从通知栏的消息点击进入,可以进入App,达到预期效果,问题解决。

常见问题

上一篇 下一篇

猜你喜欢

热点阅读