Scheduled notifications

Info
Scheduled notifications allows customers to show notification from time to time. This feature will increase user engagement over time. We added default title and text for this kind of notification. Click on it will open apps launcher activity.

To enable this feature use:


```java
    OcambaHoood.getBuilder().scheduledNotification(TIME).init();
```

or


```java
    OcambaHoood.getBuilder().scheduledNotification(TIME, TITLE, DESCRIPTION).init();
```
Info
NOTE: replace TIME with actual time minutes. Notification will be shown after TIME period when user closes app. Replace TITLE and DESCRIPTION with other text, if not default text will be shown.
On This Page