Xamarin Plugin.FirebasePushNotification导致应用程序进入休息模式

时间:2017-10-16 08:09:14

标签: c# android firebase xamarin xamarin.android

Xamarin Plugin.FirebasePushNotification导致我的应用程序进入中断模式,它正在工作,但是在我通过控制台发送了2个通知后,我随时尝试运行应用程序它将进入中断模式并说出一个未处理的异常发生,它说您的应用程序已进入中断状态,但没有代码显示,因为所有线程都在执行外部代码。

这是在MainApplication.cs中导致它的代码:

public override void OnCreate()
    {
        base.OnCreate();

            //If debug you should reset the token each time.
            #if DEBUG
                        FirebasePushNotificationManager.Initialize(this, true);
            #else

                     FirebasePushNotificationManager.Initialize(this,false);
            #endif

        //Handle notification when app is closed here
        CrossFirebasePushNotification.Current.OnNotificationReceived += (s, p) =>
                {

                };
    }

0 个答案:

没有答案