| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | 26-Sep-2023 | - | ||||
| android/ | H | 26-Sep-2023 | - | 2,286 | 1,689 | |
| build/ | H | 26-Sep-2023 | - | 356 | 143 | |
| ios/ | H | 26-Sep-2023 | - | 1,223 | 984 | |
| plugin/ | H | 26-Sep-2023 | - | 52 | 44 | |
| src/ | H | 26-Sep-2023 | - | 304 | 132 | |
| .eslintrc.js | H A D | 26-Sep-2023 | 103 | 3 | 1 | |
| .gitignore | H A D | 26-Sep-2023 | 12 | 2 | 1 | |
| .npmignore | H A D | 26-Sep-2023 | 183 | 12 | 8 | |
| CHANGELOG.md | H A D | 26-Sep-2023 | 6.6 KiB | 178 | 92 | |
| README.md | H A D | 26-Sep-2023 | 1.4 KiB | 37 | 20 | |
| app.plugin.js | H A D | 26-Sep-2023 | 60 | 2 | 1 | |
| babel.config.js | H A D | 26-Sep-2023 | 104 | 3 | 1 | |
| expo-module.config.json | H A D | 26-Sep-2023 | 151 | 8 | 7 | |
| package.json | H A D | 26-Sep-2023 | 1.1 KiB | 45 | 44 | |
| tsconfig.json | H A D | 26-Sep-2023 | 217 | 10 | 9 |
README.md
1# expo-task-manager 2 3Expo universal module for TaskManager API. 4 5## API documentation 6 7- [Documentation for the main branch](https://github.com/expo/expo/blob/main/docs/pages/versions/unversioned/sdk/task-manager.mdx) 8- [Documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/task-manager/) 9 10## Installation 11 12For [managed](https://docs.expo.dev/archive/managed-vs-bare/) Expo projects, please follow the installation instructions in the [API documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/task-manager/). 13 14## Installation in bare React Native projects 15 16For bare React Native projects, you must ensure that you have [installed and configured the `expo` package](https://docs.expo.dev/bare/installing-expo-modules/) before continuing. 17 18### Add the package to your npm dependencies 19 20``` 21npx expo install expo-task-manager 22``` 23 24#### Configure for iOS 25 26Run `npx pod-install` after installing the npm package. 27 28To use `TaskManager` API in standalone, detached and bare apps on iOS, your app has to include background mode in the `Info.plist` file. See [background tasks configuration guide](https://docs.expo.dev/versions/latest/sdk/task-manager/#configuration-for-standalone-apps) for more details. 29 30#### Configure for Android 31 32No additional set up necessary. 33 34# Contributing 35 36Contributions are welcome! Please refer to the guidelines described in the [contributing guide](https://github.com/expo/expo#contributing). 37