Xamarin不工作推送通知

时间:2017-07-05 15:39:27

标签: xamarin push-notification xamarin.android

我是Xamarin的新手。我尝试this app,但是step Intent.Extras = null

代码:

            Log.Debug(TAG, "Intent.Extras: " + (Intent.Extras == null));
            if (Intent.Extras != null)
            {
                Log.Debug(TAG, "I am before foreach");
                foreach (var key in Intent.Extras.KeySet())
                {
                    var value = Intent.Extras.GetString(key);
                    Log.Debug(TAG, "Key: {0} Value: {1}", key, value);
                }
            }
            IsPlayServicesAvailable();

Log.debug在控制台中发送:

  

D / MainActivity:Intent.Extras:True

为什么Intent.Extras = null?

0 个答案:

没有答案