react-native-background-actions icon indicating copy to clipboard operation
react-native-background-actions copied to clipboard

React Native background service library for running background tasks forever in Android & iOS.

Results 77 react-native-background-actions issues
Sort by recently updated
recently updated
newest added

import BackgroundService from 'react-native-background-actions'; const sleep = time => new Promise(resolve => setTimeout(() => resolve(), time)); // You can do anything in your task such as network requests, timers and...

Hi Guys, I am a trying to execute code in a screen after I run navigation.goBack(), it was working completely fine for a couple of releases but now it suddenly...

Fixes #60 Here goes! Let me know what you think. It's been a while since I've touched Java but feel free to scrutinize! 😁

I am clicking on the notification and it is opening Gallery by default but i want to my app. Let me know if there is anything for this.

question

Hey people, I have an app that triggers a background job immediately when my app state turns to 'background' using the AppState method from react native and stopping this background...

bug

I using this code when i want to start some task `BackgroundService.start(this.taskRandom, options);` When i kill app or logout i use this code to stop task `BackgroundService.stop();` It's work fine...

bug
help wanted

Hello @Rapsssito First of all, thank you for this great library, it has really proven to be an essential part of my app! I'm using with it with great success...

help wanted
question

Thanks for building excellent module for background task. In my case, want to add action buttons as well on notification, i couldn't find any api for this. How can we...

enhancement

First of all, a great library 💯 Currently, I'm using [geolocation](https://github.com/michalchudziak/react-native-geolocation) to keep the iOS alive and this is how I do it: ``` const RunCronjob = async () =>...

Hello I have installed my app as an APK on my phone (Android) and what I see is that the service just automatically dies/stops after around 24 hours, without any...