gpt4 book ai didi

android - Firebase 云消息传递 : No Token and strange notification behavior

转载 作者:太空宇宙 更新时间:2023-11-03 13:48:38 26 4
gpt4 key购买 nike

我在使用 Firebase 云消息传递时遇到问题:我使用 2 个扩展服务 FirebaseInstanceIdService 和 FirebaseMessagingService 实现了一个小应用程序。

如果我启动应用程序并通过Firebase 控制台,我在我的设备上收到通知。一切正常。如果我再次打开应用程序,它会挂断并产生黑色屏幕。那时 Android Studio 控制台上没有输出。我也没有从 Firebase 控制台收到第二个通知。然后我得到一个对话框:“应用程序没有反应等”再次打开应用程序后,它再次正常工作。

我也没有在 Logcat 中获得 token (?)

Firebase InstanceIdService:

public class InstanceIdService extends FirebaseInstanceIdService
{
private static final String TAG = "InstanceIdService";

@Override
public void onTokenRefresh()
{
String token = FirebaseInstanceId.getInstance().getToken();
Log.e(TAG, "!!!!!!!!!!!!!!!!!! Got token: " + token);
}
}

FirebaseMessagingService:

 public class MyFirebaseMessagingService extends FirebaseMessagingService
{
@Override
public void onMessageReceived(RemoteMessage remoteMessage)
{
sendNotification(remoteMessage);
}

public void sendNotification(RemoteMessage remoteMessage)
{
Intent intent = new Intent(this, MainActivity.class);
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)
.setContentTitle(remoteMessage.getFrom())
.setContentText(remoteMessage.getNotification().getBody())
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, notificationBuilder.build());
}
}

Android Studio 控制台上唯一的错误是“无法加载模块描述符类”但那是一个已知的错误。

我希望你能帮助我。

最好的问候,菲利克斯

编辑:来自 Firebase 控制台的错误消息:

Exception java.lang.RuntimeException: Parcel android.os.Parcel@4215be98: Unmarshalling unknown type code 1936206469 at offset 68
android.os.Parcel.readValue (Parcel.java:2087)
android.os.Parcel.readArrayMapInternal (Parcel.java:2321)
android.os.Bundle.unparcel (Bundle.java:249)
android.os.Bundle.getString (Bundle.java:1118)
com.google.firebase.messaging.FirebaseMessagingService.zzT ()
com.google.firebase.messaging.FirebaseMessagingService.zzm ()
com.google.firebase.iid.zzb$2.run ()
java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1112)
java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:587)
java.lang.Thread.run (Thread.java:841)

最佳答案

I also do not get an Token in the Logcat (?)

onTokenRefresh() 方法在为您生成新 token 时被调用。每次打开应用程序时都不会调用它。但是,您可以使用 FirebaseInstanceId.getInstance().getToken();

获取 token

If I start the application and send a notification via Firebase Console, I get the notification on my device. Everything works. If I open the App again, it hangs up and produces a black screen.

我遇到过类似的问题,如果您没有互联网连接或互联网连接速度较慢,通常会发生这种情况。还没有解决办法。 :(

关于android - Firebase 云消息传递 : No Token and strange notification behavior,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37964737/

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