Firebase Cloud Messaging:没有令牌和奇怪的通知行为

Firebase Cloud Messaging: No Token and strange notification behavior

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

如果我启动应用程序并通过 Firebase 控制台,我在我的设备上收到通知。 一切正常。 如果我再次打开应用程序,它会挂断并产生黑色 屏幕。然后 Android Studio 控制台上没有输出。 我也没有从 Firebase 控制台收到第二个通知。 然后我得到一个对话框:"The Application does not react etc" 再次打开应用程序后,它再次正常运行。

我也没有在 Logcat (?)

中获得令牌

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 控制台上的唯一错误是 "Failed to load module descriptor class" 但那是 一个已知错误。

希望你能帮帮我。

此致, 菲利克斯

编辑:来自 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.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() 方法在为您生成新令牌时被调用。每次打开应用程序时都不会调用它。 但是,您可以使用 FirebaseInstanceId.getInstance().getToken();

获取令牌

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.

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