[**react-native-notify-kit**](react-native/reference/index)

---

[react-native-notify-kit](react-native/reference/index) / AndroidFlags

# Enumeration: AndroidFlags

Defined in: [packages/react-native/src/types/NotificationAndroid.ts:1229](https://github.com/marcocrupi/react-native-notify-kit/blob/main/packages/react-native/src/types/NotificationAndroid.ts#L1229)

Enum used to set any additional flags supported on Android.
See Android's [setFlag()](<https://developer.android.com/reference/android/app/Notification.Builder#setFlag(int,%20boolean)>) documentation.

## Enumeration Members

### FLAG_INSISTENT

> **FLAG_INSISTENT**: `4`

Defined in: [packages/react-native/src/types/NotificationAndroid.ts:1234](https://github.com/marcocrupi/react-native-notify-kit/blob/main/packages/react-native/src/types/NotificationAndroid.ts#L1234)

The audio will be repeated until the notification is cancelled or the notification window is opened.
This will be set for you by setting `loopSound`.

---

### FLAG_NO_CLEAR

> **FLAG_NO_CLEAR**: `32`

Defined in: [packages/react-native/src/types/NotificationAndroid.ts:1240](https://github.com/marcocrupi/react-native-notify-kit/blob/main/packages/react-native/src/types/NotificationAndroid.ts#L1240)

Prevents the notification from being canceled when the user clicks the Clear all button.
This will be set for you by setting `ongoing`.
