243 questions
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
0 answers
45 views
Difference between `Fetch New Data` and `Background App Refresh` on iOS
I have been developing a chat feature in my app but I have been having the same problem for the past 8 months regarding syncing app with server. Currently, notifications are being pushed using FCM to ...
0 votes
0 answers
26 views
How do I use the data returned by a Expo BackgroundFetch in my app state?
I have a VersionUpdateModal component in my Expo project. When it's mounted, it makes an http call to check if the user's current version of the app needs to be updated. If it does, it sets a state ...
0 votes
1 answer
134 views
Socket io disconnects while app is on background (ionic capacitor ios)
we've a socket.io client for chats and for some data fetching also, so the problem is when we put the app in background in IOS, after 30 seconds it disconnects, yes it connects again when you put the ...
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 ...
2 votes
0 answers
133 views
BackgroundFetch Task Not Triggering Automatically in iOS and Android with Expo and Notifee
I'm working on an Expo project where I'm trying to set up a background fetch task using expo-task-manager and expo-background-fetch to trigger a local notification using @notifee/react-native. The ...
0 votes
1 answer
173 views
Flutter: Is there a way to make a persistant notification which can not be dismissed?
I am developing a mobile app with flutter which needs to show a notification that can not be dismissed. So as soon as the notification is displayed it can not be swiped away. The only possiblity to ...
0 votes
1 answer
642 views
Flutter background_fetch
FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:checkDebugAarMetadata'. > Could not resolve all files for configuration ':app:debugRuntimeClasspath'. ...
0 votes
1 answer
233 views
Is it possible to use Background Fetch Api for uploading file..?
I'm working on implementing the Background Fetch API in my Vue project to enable file uploads to an S3 bucket. The goal is to allow the upload process to continue even if the user closes the screen, ...
2 votes
0 answers
81 views
Expo background timer
I'm currently working on a project using Expo and I need to implement a background timer functionality. I've looked into Expo Background Fetch as it seems to be the recommended solution for this ...
2 votes
0 answers
293 views
Flutter HomeScreen Widget background update
Anyone who has used this https://pub.dev/packages/home_widget library? I need to update the data in the HomeScreen Widget every day. I use this library https://pub.dev/packages/background_fetch to run ...
0 votes
0 answers
181 views
Detect if background fetch is running
I am using background_fetch, How can I check If this package's service is running or not? Currently I can start or stop the service and they have a return type which can indicate their status (...
2 votes
0 answers
491 views
The background task in my SwiftUI app doesn't fire on physical device
folks. In my ios app with SwiftUI, I ma trying to implement fetch data in background in order to update my app with fresh data from the Back End. In order to do it, I am trying to implement it in the ...
0 votes
0 answers
127 views
How to make a background request when a notification arrives on iOS
I'm trying to intercept the receipt of a notification through some delegate so I can make a request and save a model in the device's memory to avoid loading while the user navigates the app. The ...
0 votes
0 answers
231 views
App doesn't work in release mode after using background_fetch package
Hello My app is working fine on debug mode I'm receiving a notification from a websocket server , and trying to display this notification when the app is in a terminated state using background_fetch's ...