@eaudejavel/react-native-begin-background-task
v0.1.3
Published
React Native wrapper for beginBackgroundTask, iOS only
Downloads
39
Maintainers
Readme
@eaudejavel/react-native-begin-background-task
⚠️ Note: This only works on iOS and will be ignored on other platforms.
Installation
npm i @eaudejavel/react-native-begin-background-taskthen...
npx pod-installUsage
import {
beginBackgroundTask,
endBackgroundTask,
} from "@eaudejavel/react-native-begin-background-task";
// ...
const backgroundTaskId = await beginBackgroundTask();
// Your task that you want to keep running if the app goes to the background...
await endBackgroundTask(backgroundTaskId);