# Notification Management

{% hint style="warning" %}
Since Android 13 there is a new [Notification Runtime Permission](/move-platform/sdk/appendix/android/permission-handling/runtime-permissions.md#notification-permission) introduced.
{% endhint %}

{% hint style="danger" %}
When running an Android application in background, several [limits ](https://developer.android.com/about/versions/oreo/background)apply, which also have [impact](https://developer.android.com/about/versions/oreo/background-location-limits) on retrieving locations. To circumvent this, an application needs to show a [foreground service ](https://developer.android.com/guide/components/foreground-services)with a notification visible to the user.
{% endhint %}

The notification is visible to the user and should therefore be maintained by the host app. For this reason the initialization provides three methods to pass a [notification](https://developer.android.com/training/notify-user/build-notification):

* [Recognition ](https://docs.movesdk.com/move-platform/sdk/appendix/android/pages/-MZIfp4AHvpUSOaycA60#dolphinsdk.builderv1.1-recognitionnotificationrecognitionnotifications)- Whenever the MOVE SDK tries to detect for example activities, trips or even more
* [Trip ](/move-platform/sdk/api-interface/android/initialization.md#trip-notifications)- When there is an active trip ([MoveTripState ](/move-platform/sdk/models/movetripstate.md)`.Running`).
* [Walking](/move-platform/sdk/api-interface/android/initialization.md#walking-notifications)

By providing a [Notification.Builder ](https://developer.android.com/reference/android/app/Notification.Builder)you can freely customize the visible notification. With the *notificationId* you can even update the notification whenever you need to.&#x20;

{% hint style="info" %}
Don't forget to create a notification [channel](https://developer.android.com/training/notify-user/channels)
{% endhint %}

![Example notification ](/files/-Mcxwlf8B-xYSh-yhQ9W)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.movesdk.com/move-platform/sdk/appendix/android/notification-managment.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
