react-native-background-task
react-native-background-task copied to clipboard
Periodic background tasks for React Native apps, cross-platform (iOS and Android), which run even when the app is closed.
After running `npm install react-native-background-task --save`, I am trying to `import BackgroundTask from 'react-native-background-task'`, but I get `Cannot find module 'react-native-background-task' or its corresponding type declarations.` The package was added...
When I run my taskts and look for any console response, I see only this: 06-09 23:27:06.986 25351 25351 D BackgroundTask: Committing job schedule 06-09 23:34:37.407 25351 26893 D BackgroundTask:...
How can i fix it? 
I have setup a task to run when application goes background. Unfortunately, its not working for me. Please find the below code ``` import BackgroundTask from 'react-native-background-task' import { Vibration...
The lib does not work on Android. I followed the documentation and this is the error from `yarn android` ``` * What went wrong: Could not determine the dependencies of...
Hi, I am getting the following warning after reopening the app or reloading it. ``` registerHeadlessTask called multiple times for same key 'BackgroundTask' ```
Is it possible to start the first execution of the task as soon as the app leaves the Foreground?
Hi it does not work for me and I got warning register headless js , i want to run this code in background BackgroundTask.define(() => { console.log('Hello from a background...
Hello, I just started experimenting with this android background tasks, but i was not able to run even simple example.  I have started with create-react-native-app, ejected from expo, added...