Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleiOS [Swift]
Code Block
Appoxee.shared()?.showNotificationsOnForeground = true;

In order to receive push notification in foreground in class which extends android.app.Application class within onCreate method for AppoxeeOptions set notification mode

Expand
titleAndroid [Java]
Code Block
AppoxeeOptions opt = new AppoxeeOptions();
opt.notificationMode = NotificationMode.BACKGROUND_AND_FOREGROUND;

NotificationMode is an enum and you can choose one of three options:

  • BACKGROUND_ONLY - notification will show only when the app is closed or in idle mode.

  • BACKGROUND_AND_FOREGROUND - notification will show every time when a push notification comes.

  • SILENT_ONLY - notification never shows on the device.