推送通知的异常

推送通知的错误channel.Open()错误提示“The maximum number of channels have already been opened on th

推送通知的错误
channel.Open();
错误提示“The maximum number of channels have already been opened on this device.  A channel must be removed before a new one can be opened.”
我只在页面的loaded事件中写了一个channel,并且也写了判断处理
channel = HttpNotificationChannel.Find(channelname);
       if (channel == null)
问题可能出在哪里,求解啊
[解决办法]
其他App占用了推送通道。
在手机的设置里把不想用的关了。
好像一个手机只支持15个推送通道。
[解决办法]

引用:
引用:模拟器重启还是这问题?
试过N多次了,ShellToastNotificationReceived和HttpNotificationReceived用一个channel是可以的吧

可以,本来就应该是一个的。

那你把代码发下看看