美文网首页
记录接入Firebase Cloud Messaging出现的一

记录接入Firebase Cloud Messaging出现的一

作者: 伪装的狼 | 来源:发表于2022-11-24 15:03 被阅读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,达到预期效果,问题解决。

常见问题

  • 按照教程接入Firebase Cloud Messaging了,但是无消息通知

    • 请检查网络是否能访问外网
    • 检查测试设备的FCM注册令牌是否正确,App卸载重新安装之后会更新令牌
    • 检查机器是否有Google Play
  • App在前台不能接收到消息提示

    没有消息提示,但是会回调FirebaseMessagingService的onMessageReceived方法,重写自行实现通知即可。

    private void createNotification(RemoteMessage remoteMessage) {
        Intent intent = new Intent(this, NotificationActivity.class);
        intent.putExtra("text", remoteMessage.getData().get("message_data_text"));
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    
        PendingIntent pendingIntent =  PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);
        Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    
        NotificationCompat.Builder  notificationBuilder = new NotificationCompat.Builder(this, createChannel())
                .setSmallIcon(R.mipmap.ic_launcher)
               .setContentTitle(remoteMessage.getData().get("message_data_title"))
            .setContentText(remoteMessage.getData().get("message_data_text"))
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);
    
        NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        manager.notify(0, notificationBuilder.build());
    
    }
    
  • App杀掉进程之后不能接收到通知

    检查App是否有自启动的权限,是否加入电池优化了。

  • 点击消息通知进入App的方式怎么拿到传递的参数?

    在启动页的onCreate从Intent中获取,

    Intent intent = getIntent();
    if(intent.getExtras() != null && intent.getExtras().containsKey("key")) {
          String data = intent.getExtras().getString("key"));
    } 
    

相关文章

网友评论

      本文标题:记录接入Firebase Cloud Messaging出现的一

      本文链接:https://www.haomeiwen.com/subject/rjpzxdtx.html