> For the complete documentation index, see [llms.txt](https://docs.appkickstarter.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.appkickstarter.com/features/notifications.md).

# Notifications

### Send Local Notifications

```
val notifier = NotifierManager.getLocalNotifier()
val notificationId = notifier.notify("Title", "Body") 
```

### Remove Local Notification

<pre><code>notifer.remove(notificationId) // Removes notification by Id  
<strong>notifier.removeAll() // Removes all notification
</strong></code></pre>

### **Push Nofications**

Push notifications are setup in `initFCM` method in `AppInitializer#initialize` function. &#x20;

#### **Detecting notification click and get payload data**

<pre><code><strong>fun onPushNotification(title: String?, body: String?)
</strong><strong>fun onNotificationClicked(data: PayloadData)
</strong></code></pre>
