[**@notifee/react-native**](react-native/reference/index)

***

[@notifee/react-native](react-native/reference/index) / AndroidProgress

# Interface: AndroidProgress

Interface for defining the progress of an Android Notification.

<Vimeo id="android-progress-summary" caption="Android Progress (w/ Big Picture Style)" />

View the [Progress Indicators](/react-native/android/progress-indicators) documentation to learn more.

## Platform

android

## Properties

### current?

> `optional` **current**: `number`

The current progress value.

E.g. setting to `4` with a `max` value of `10` would set a fixed progress bar on the notification at 40% complete.

#### Defined in

[packages/react-native/src/types/NotificationAndroid.ts:837](https://github.com/invertase/notifee/blob/main/packages/react-native/src/types/NotificationAndroid.ts#L837)

***

### indeterminate?

> `optional` **indeterminate**: `boolean`

If `true`, overrides the `max` and `current` values and displays an unknown progress style. Useful when you have no
knowledge of a tasks completion state.

Defaults to `false`.

#### Defined in

[packages/react-native/src/types/NotificationAndroid.ts:845](https://github.com/invertase/notifee/blob/main/packages/react-native/src/types/NotificationAndroid.ts#L845)

***

### max?

> `optional` **max**: `number`

The maximum progress number. E.g `10`.

Must be greater than the `current` value.

#### Defined in

[packages/react-native/src/types/NotificationAndroid.ts:830](https://github.com/invertase/notifee/blob/main/packages/react-native/src/types/NotificationAndroid.ts#L830)
