gpt4 book ai didi

android - 当应用程序被杀死或在后台收到 fcm 通知时自动打开应用程序

转载 作者:行者123 更新时间:2023-12-05 00:05:21 28 4
gpt4 key购买 nike

如何解决这个问题任何人给我发送根据这个问题的任何解决方案

收到fcm通知但是app没有打开怎么处理

public void onMessageReceived(RemoteMessage remoteMessage) {

Intent intent = new Intent(INTENT_FILTER);
sendBroadcast(intent);

if (remoteMessage.getData().size() > 0) {
utils.print(TAG, "From: " + remoteMessage.getFrom());
utils.print(TAG, "Notification Message Body: " + remoteMessage.getData());
//Calling method to generate notification
if (SharedHelper.getKey(this,"loggedIn").equalsIgnoreCase(getString(R.string.True))) {

sendNotification(remoteMessage.getData().get("message"));
}
}

最佳答案

您应该像这样在 Manifest 中声明 firebase 服务类:

 <service android:name="your_service>
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>

关于android - 当应用程序被杀死或在后台收到 fcm 通知时自动打开应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59947883/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com