Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
63 views

I am building a Flutter app called NotiBac that helps students memorize history dates and events for the BAC exam by showing them in random popup overlays. The app has two parts: Lists Management, ...
Mostafa dd's user avatar
0 votes
1 answer
89 views

I use workmanager package to schedule background tasks, I have this setup for setting background autobackup task to run eeither daily, weekly or monthly, but it runs every 15 minutes not matter what ...
Husen Patel's user avatar
0 votes
0 answers
38 views

When the workmanager calls the callbackDispatcher, the app UI freezes for a moment and any heavy work will continue to freeze it. It can be mitigated by using compute for the heavy computations, but ...
Natzely's user avatar
  • 726
2 votes
0 answers
189 views

Problem : I'm trying to implement background tasks in my Flutter app to add users online database when device is online using WorkManager. However, after initilaizing the WorkManager and running the ...
Vishnu Kumar's user avatar
0 votes
0 answers
51 views

In my Flutter app I fetch about 20,000 items from my Supabase backend and then save it my local storage using Floor. Fetching is fast but looping through is what takes a lot of time and its bad on UX. ...
Jack Siro's user avatar
  • 797
0 votes
1 answer
71 views

getting error The method 'isScheduledByUniqueName' isn't defined for the type 'Workmanager'. Try correcting the name to the name of an existing method, or defining a method named '...
Mahendra Telure's user avatar
0 votes
1 answer
196 views

I'm having trouble passing and retrieving inputData in Flutter's Workmanager. I'm trying to send some data (like id and date) when registering a task, but when I try to access the inputData in the ...
Rapkat Baudunov's user avatar
0 votes
0 answers
171 views

I am working on an flutter app, where we need to send the user's location (latitude and longitude) to our server every 20-30 seconds in the background. The server checks if the user is within a ...
Rasla's user avatar
  • 136
1 vote
0 answers
156 views

I am developing an app with flutter which requires to have repeatedly notifications (using local_notifications package). For Android everything is working properly with the code and the background ...
Pabart13's user avatar
0 votes
1 answer
120 views

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 ...
user1204563's user avatar
0 votes
1 answer
199 views

In application background state, I want to fetch some data from API then store them into Hive database. for running task in background, I use workmanager package and added necessary code to fetch data ...
Shafi Munshi's user avatar
0 votes
1 answer
133 views

By "crash" I mean the UI becomes unresponsive. The app does not close and no errors are shown in the VSCode Debug Console. In main() I'm initializnig my callbackDispatcher: void main() { ...
I wrestled a bear once.'s user avatar
1 vote
0 answers
78 views

I am encountering an issue with putFile in Firebase Storage when running in the background. Everything works fine in the foreground, but it's not functioning in the background. Please see the attached ...
Kiều Phong's user avatar
2 votes
1 answer
456 views

I’m currently using the workmanager plugin for Flutter, and I’ve come across multiple references suggesting the use of version 0.6.x of the plugin for improved functionality and bug fixes. However, ...
dev2019's user avatar
  • 71
0 votes
0 answers
194 views

I'm developing a Flutter application for both Android and iOS where I need to check server reports every 24 hours and notify the user with a local notification if new reports are available. This ...
ASAD WASEEM's user avatar
0 votes
1 answer
199 views

I initialized Firebase inside main, and I need to access user data inside workmanager to provide the user with personalized notification, but workmanager for some reason works synchronously at the ...
ديمة's user avatar
1 vote
1 answer
1k views

I'm trying to integrate WorkManager in iOS (it already works for me on android) When I run the project, it gives me the following error: `Type 'WorkmanagerPlugin' has no member '...
Richardeveloper's user avatar
0 votes
1 answer
470 views

Im trying to do a periodic background task that uploads some information, the information that i need is in local sqlite database but I cant acces it like i do out of the workmanager task, it gives me ...
Leo's user avatar
  • 84
4 votes
1 answer
3k views

I want to execute some background task in Flutter when the app is not in opened state. It is either in background or in terminated state. The requirement is that i want to fetch the device location ...
Adnan's user avatar
  • 59
2 votes
1 answer
603 views

Sometime background service start if app is in killed state, but sometimes background service stop with error: Flutter engine disconnected. Connected engine count 0 Main function void main() async { ...
عثمان غني's user avatar
1 vote
0 answers
359 views

I am not able to play local audio from the background. I have a Workmanager which runs periodically and should play a sound if necessary. This means that I start the audio from the background on the ...
DeKekem's user avatar
  • 1,835
1 vote
0 answers
117 views

Is the audioplayers plugin meant to work when app is in background? I am calling this line await player.play(AssetSource(audioFilePlath)); when app is in background and no sound is played. The same ...
DeKekem's user avatar
  • 1,835
0 votes
1 answer
236 views

I have a provider where I have a list of tasks, it happens that, I want to implement a way in which after a specific time, I would like to remove a task from the list. class TaskProvider extends ...
Yasuki's user avatar
  • 15
2 votes
1 answer
263 views

I use the BLoC, and workmanager libraries. Actually, the code runs fine. But, looks like smell code. My problem : I have to initialise all my repositories for the MultiRepositoryProvider which wraps ...
Rémy Lavergne's user avatar
0 votes
0 answers
823 views

i'm trying to use workermanger with flutter about background service on ios. So this is my plist Now this is my AppDelegate on xcode: import UIKit import Flutter import workmanager @...
Mr. Developer's user avatar
0 votes
0 answers
176 views

I want to show periodic notification using workmanager.I need context to navigate when user tap on notification but context is not available in background task.How to solve this issue.I have passed ...
Jeevan Shrestha's user avatar
2 votes
0 answers
87 views

I have an Android plugin in my Flutter project used to access the backend. In my MainActivity.kt, I have : override fun configureFlutterEngine(flutterEngine: FlutterEngine) { ...
user avatar
3 votes
0 answers
337 views

Is it possible to get data from Firebase using the WorkManager dependency? I tried to use Stream Builder but for some reason I can't get the data using the WorkManager. If there is a way, can you help ...
Eben Oasis's user avatar
0 votes
0 answers
132 views

Is it possible to schedule a time to update a field (periodically) in the Firebase database using Workmanager instead of using Cloud Function? There are two Timestamps in the database. One is static, ...
EBENEZER OCANSEY's user avatar
2 votes
1 answer
722 views

I am getting error only in release mode but when i try the same in debug method it runs fine and fetched periodic data once for every 15 mins. The error i encountered after building apk is E/flutter (...
Devendiran's user avatar
1 vote
0 answers
423 views

I am using workmanager to compress and upload videos in my app in background. The issue is, I wanted to process to run even when app is minimized. It was easily done using this. But in one phone, the ...
Shreyansh Sharma's user avatar
2 votes
0 answers
788 views

I'm trying to run a one-off task using the work manager plugin. Works fine on android, but on IOS I'm running into some issues. I have set up as per the documentation here https://github.com/...
Chris Green's user avatar
0 votes
1 answer
252 views

i am using firebase cloud messaging to send a push notification.I want to schedule the notification using workmanager package.I have also tried with zoneschedule method of flutter local notification ...
Jeevan Shrestha's user avatar
1 vote
1 answer
2k views

I have some problem when use package workmanager. Here is error: [VERBOSE-2:dart_vm_initializer.cc(41)] Unhandled Exception: PlatformException(unhandledMethod("registerPeriodicTask") error, ...
zxcvbnm111's user avatar
0 votes
0 answers
441 views

I'm developing an application in Flutter and I would like to add a feature that allows receiving background notifications for new orders, even when the app is closed or in the background. After ...
delio ribas's user avatar
0 votes
1 answer
194 views

I used Workmanager + Geolocator to update the location of the driver every minute, the program works and updates everything and sends it to the server, but when the application is running in the ...
Choco Bar's user avatar
1 vote
1 answer
370 views

I am having a work manager where i register a one off task like below Workmanager().registerOneOffTask( "SyncCartIdsToFirestore-${DateTime.now()}", "firestore", ...
Emmanuel Njorodongo's user avatar
0 votes
0 answers
961 views

Am trying to implement Workmanager in flutter code and need context inside the function. void callbackDispatcher() { Workmanager().executeTask((taskName, inputData) async { await AuthController....
kapil tk's user avatar
  • 389
1 vote
1 answer
77 views

I trying to call native methods in background service but it throws me an exception. [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: MissingPluginException(No implementation ...
RANJIT KUMAR SAHU's user avatar
0 votes
0 answers
191 views

I tried workmanager package to run periodic task It works fine in android but for ios Its not running is there anything like Is it possible in native swift or c or Am I doing something wrong in ios ...
Bibek Saha's user avatar
1 vote
1 answer
915 views

VPN applications seem to break WorkManager's NetworkType.CONNECTED constraint in my app. Because I have set setRequiredNetworkType(NetworkType.CONNECTED) of work manager request explicitly. However, ...
Ab Morphious's user avatar
4 votes
2 answers
8k views

I am trying to show flutter local notification when receiving firebase notification in background, foreground and terminated states of app. i am trying to resolve this using work manager package and ...
Karen Ghazaryan's user avatar
0 votes
0 answers
248 views

I'm working on an app that allows users to set reminders, which basically schedules local notifications. I have a feature in my app, that requires adding some data into the local database, whenever a ...
ASAD HAMEED's user avatar
  • 2,740
1 vote
2 answers
2k views

I want to get updates on my location every 15 mins even when the phone sleeps and when the app is minimized. I am currently using workmanager and geolocator to get it but it doesn't work. It kept ...
wuuyungwuu's user avatar
1 vote
0 answers
204 views

I am trying to make the application send a notification when a specified period has elapsed, and this works well when the application is in the background, but when the application is closed, it does ...
Ali Gomaa's user avatar
1 vote
0 answers
484 views

I have been using Pigeon to call Android native side for data. However when i try to do the same thing in a WorkManager task, it just throws PlatformException(channel-error, Unable to establish ...
Nicholas's user avatar
  • 509
1 vote
0 answers
222 views

I have been working on an application that needs to change the state of some program joined by user after a specific duration. I have been using workmanager plugin for that purpose and it has been ...
Ayesha Iftikhar's user avatar
1 vote
0 answers
364 views

I am trying to run workmanager package on IOS. It works fine on android but doesn't work on IOS. I am using iphone 14 to test. I did setup for ios following iosSetup. callbackDispatcher doesn't ...
Aabhash Rai's user avatar
2 votes
0 answers
983 views

I have a todo app built in Flutter and intended only for Android. I built a home screen widget for it (using the home_widget package in Flutter) to allow users to see a list of tasks and check them ...
Anderillo's user avatar
  • 153
1 vote
1 answer
829 views

I use Flutter with the plugin Workmanager. I did not find a way to know if the background task has finished for registerOneOffTask. I had ideas with RxSharedPreferences that I write something from the ...
maxmitz's user avatar
  • 190