> For the complete documentation index, see [llms.txt](https://docs.movesdk.com/move-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.movesdk.com/move-platform/move-sdk-1.x/sdk/appendix/android/notification-managment.md).

# Notification Management

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.

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

* [Recognition ](https://docs.movesdk.com/move-platform/move-sdk-1.x/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/move-sdk-1.x/sdk/api-interface/android-1/builder.md#trip-notifications)- When there is an active trip ([MoveTripState ](/move-platform/move-sdk-1.x/sdk/models/movetripstate.md)`.Running`).

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)
