gpt4 book ai didi

android - 当应用程序没有像 whatsapp、twitter、facebook、instagram 等那样运行时处理 android 推送通知

转载 作者:行者123 更新时间:2023-12-04 04:13:11 25 4
gpt4 key购买 nike

我正在开发类似 whatsapp 的聊天应用程序。当应用程序运行时,我使用 websocket 连接来处理两个用户之间的聊天,但是当应用程序被终止或未运行时,我尝试使用 FCM 推送通知服务来通知用户何时收到消息,就像 whatsapp 一样做。

现在的问题是,当应用程序在前台或后台(从 View 中被遮挡,但仍在最近任务菜单中)时,FCM 会收到推送通知,一旦应用程序从最近任务菜单中滑出或根本没有启动,没有收到通知。

我已经在这里呆了整整一周,我搜索并阅读了 github、stackoverflow、quora 和一些博客文章上的各种文章和社区对话,但我还没有找到有用的东西。

我尝试使用后台服务来保持与服务器的 websocket 连接,但我无法让服务继续运行,因为当应用程序不在前台时,android 会终止后台服务。

我的意思是 whatsapp、twitter、instagram、facebook、gmail、likee、tiktok 等应用程序如何处理推送通知,这样即使应用程序关闭(从最近的菜单中滑出或根本没有启动)它仍然会通知它的用户一些服务器上的更新。

这是我的代码...
在服务器上

const firebase_admin = require('firebase-admin');
var service_account = require('./service_account.json');
firebase_admin.initializeApp({
credential: firebase_admin.credential.cert(service_account),
databaseURL: 'https://fcm_pushnotification-b9983.firebaseio.com/'
});

app.get('/sendPushNotification', (req, res) => {
// This registration token comes from the client FCM SDKs.
var registrationToken = 'clIilmqTRYarMF4gcrpEeH:APA91bFjkmZP7gU836ZCAzyPZaOWU4nU4SLL5OPWNkgukt0zBe0zvn5PEQ-42g60R5UXFN0tXQISjCDcbl032j2Tc81_OZ5uAJ7Aq3_OAaIz7g56oT547LnB9wiiBIKRZhc1TWGMP7lr';

var message = {
notification: {
title: 'Samuel',
body: 'This is an urgent message!',
},
webpush:{
headers:{
Urgency:'high'
}
},
android:{
priority:'high'
},
token: registrationToken
};


// Send a message to the device corresponding to the provided
// registration token.
firebase_admin.messaging().send(message)
.then((response) => {
// Response is a message ID string.
console.log('Successfully sent message:', response);
res.send('Successfully sent message:- '+ response);
})
.catch((error) => {
console.log('Error sending message:- ', error);
res.send('Error sending message:'+ error);
});
});


我在 android 上的服务类
public class MyFirebaseMessagingService extends FirebaseMessagingService{
/**
* Called if InstanceID token is updated. This may occur if the security of
* the previous token had been compromised. Note that this is called when the InstanceID token
* is initially generated so this is where you would retrieve the token.
*/
@Override
public void onNewToken(@NonNull String token) {
Log.d(TAG, "Refreshed token: " + token);

// If you want to send messages to this application instance or
// manage this apps subscriptions on the server side, send the
// Instance ID token to your app server.
sendRegistrationToServer(token);
}

@Override
public void onMessageReceived(@NonNull RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
String title = remoteMessage.getNotification().getTitle();
String body = remoteMessage.getNotification().getBody();
this.sendNotification(new Notification(null, title, body, 0));
}

private void sendNotification(Notification notification){
// Notification channel and notification is build here.
}

}


list
<uses-permission android:name="android.permission.INTERNET" />

<service
android:name=".Services.MyFirebaseMessagingService"
android:exported="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>

<!-- Set custom default icon. This is used when no icon is set for incoming notification messages. -->
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_heart" />
<!-- Set color used with incoming notification messages. This is used when no color is set for the incoming
notification message. -->
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/red" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="@string/notification_channel_id" />

当应用程序未运行时,我是否需要请求权限才能使其工作。正如所见,我什至将服务器上的通知优先级设置得如此之高。我对此感到很沮丧。欢迎任何帮助。

最佳答案

对于可能遇到类似问题的任何人:
我联系了 firebase 支持团队,他们说这是由一些原始设备制造商 (OEM) 实现的电池优化引起的问题。当应用程序在应用程序切换器中被刷掉时,该应用程序被视为被强制停止,这不是默认的 Android 行为。不幸的副作用是它可能导致您的应用程序的 FCM 服务停止运行。
检查您的应用是否受任何 OEM 电池管理功能影响的一种方法如下:

  • 将 OEM 设备附加到 adb。
  • 在设备上运行您的应用程序。
  • 将应用程序从设备上最近的屏幕上滑开。
  • 运行命令:adb shell dumpsys package MY-PACKAGE | grep stopped

  • 如果显示 stopped=true ,可以安全地假设 OEM 具有这样的机制,并且您的应用程序受到此问题的影响。
    您还可以阅读有关此问题的更多信息以及解决此问题的可能方法: https://www.freecodecamp.org/news/why-your-push-notifications-never-see-the-light-of-day-3fa297520793/ .

    关于android - 当应用程序没有像 whatsapp、twitter、facebook、instagram 等那样运行时处理 android 推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61321878/

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