首页 > 解决方案 > Android Firebase Push Notification Bundle data issue

问题描述

After sending a notification to my application then when I tap to the notification bar it goes to the MainActivity with Bundle data.

But after exit from the application then when I enter the application by tapping app_launcher_icon the application gets the previous notification Bundle data.

Now how to solve this issue.

标签: androidfirebasepush-notification

解决方案


使用后清除意图数据

getIntent().setData(null);

推荐阅读