5

我在我的应用程序中使用One Signal Push 通知。当我的应用程序关闭时,这意味着当我不使用我的应用程序时,我会从我的测试团队发送的一个信号中收到推送通知。但是当我使用一个应用程序时,我没有得到它。

更感谢您的回答。

4

3 回答 3

7

在最新版本(3.+@aar)中,您应该使用inFocusDisplaying

OneSignal.startInit(this)
  .inFocusDisplaying(OneSignal.OSInFocusDisplayOption.Notification)
  .init();

您可以设置NoneandInAppAlert而不是Notification.

于 2016-09-18T00:29:10.977 回答
1

通过使用此行,尽管我的应用程序已打开,但我可以获得推送通知。

参考链接

OneSignal.enableNotificationsWhenActive(true);
于 2016-04-09T05:59:25.343 回答
1

尝试这个

window.plugins.OneSignal.enableInAppAlertNotification(true);
于 2017-04-18T12:09:01.833 回答