727 questions
0 votes
0 answers
70 views
How to debug Microsoft-Windows-BrokerInfrastructure service
I attempted to declare a print background task (PrintSupportExtensionBackGroundTask) in the appx manifest and register it with the system. However, when the foreground application (i.e., the main ...
0 votes
1 answer
112 views
How to register for the PSA printing background task
I'm working on PSA (Print Support App) development with the following environment: Windows 10 22H2 and Windows 11 SDK 10.0.26100.0. In the appx manifest, I attempted to register a background task ...
0 votes
0 answers
252 views
Background tasks with react-native-background-fetch not working on iOS
I'm currently working on a project where we need to run background tasks, specifically, making periodic API calls. After some research, I came across the react-native-background-fetch library. It ...
0 votes
1 answer
50 views
How to stop Expo Push Notification sound?
I am using Expo Push Notifications in my app to implement a WhatsApp-like calling functionality. I've used a custom sound, and it plays perfectly. But the problem is when I wanna stop it from the JS ...
0 votes
0 answers
101 views
How to force Background Uploads with Firebase Storage using Swift?
I am uploading small files to Firebase Storage, approximately 276KB a piece. The app can choose to do a small handful of these uploads per day from the background. The desired behavior is that ...
0 votes
0 answers
31 views
BGTaskSchedulerErrorCodeUnavailable error not thrown when background app refresh is off
We have implemented BGAppRefreshTask in our iOS Swift project. If the device's background app refresh is off, then below line of code is not throwing any error. Ideally it should throw ...
0 votes
1 answer
105 views
Django background task not runnng
I am trying to send an email with a Django background task. But the problem is that when I run python manage.py process_tasks nothing happens. I am just stuck in part where it looks like it is running ...
1 vote
2 answers
1k views
How to create a background task with headless js in react native
When following the documentation here https://reactnative.dev/docs/headless-js-android and trying to create a simple background task, everything seems to work properly ( compilation and building is ...
0 votes
2 answers
328 views
Automatically starting task queue for django-background-tasks
I'm building an application which involves a task queue from django-background-tasks. The issue that I'm facing is that I can't seem to start the queue automatically and have to manually run ...
1 vote
1 answer
63 views
Android studio creates 1000+ tasks in background after being closed
I've installed my AS on external SSD (where programs are didn't matter before but maybe it's crucial now). I'm a student so all I make is simple, not too demanding (and outright primitive), so 2374 ...
0 votes
0 answers
241 views
My BackgroundTasks code is not working in background, but works on debug
I am trying to upload a file to S3, authenticated by AWS Cognito, automatically from the background even when the app is closed. So this is my AppDelegate Code: import BackgroundTasks class ...
0 votes
0 answers
102 views
How to keep alive web socket connection in background app?
How do I keep the web socket connection active even though it is in the background of the application? Even though I am outside the application, I still want to receive messages sent by the web socket ...
1 vote
0 answers
592 views
`BGAppRefreshTask` Handler Not Being Called Despite Proper Setup in iOS App
I’m working on implementing a background task in my iOS app using BGAppRefreshTask. I’ve followed all the steps to set it up, but the background task did not work for the background and terminated ...
0 votes
1 answer
120 views
MissingPluginException(No implementation found for method createNewNotification on channel awesome_notifications)
I am trying to send a notification using Awesome notification plug in whenever a background task is successfully completed using Workmanager plug-in. Having the Workmanager work on iOS is a pain, but ...
0 votes
0 answers
64 views
Out-of-process background task & NamedPipeServer in UWP
I created a out-of-process background task in which I download a HLS stream(m3u/m3u8) by using a LibVLCSharp library. Platform is UWP I have two different processes app and background task. App is ...