Skip to main content
Filter by
Sorted by
Tagged with
4 votes
1 answer
125 views

I’m building a Flutter app that needs to run continuously in the background to track whether the user is at the gym and keep a workout timer running. Flutter background execution stops after some time ...
TheusHen's user avatar
0 votes
0 answers
47 views

In my Flutter app, I have a native MethodChannel used to send logs from Dart to the Android side, where they're written into a file. This works fine as long as the app is running normally. However, I ...
rickmcrick's user avatar
1 vote
1 answer
149 views

The provided code snippet is part of a Flutter application that uses the flutter_background_service package to run background tasks. The onStart function is the entry point for the background service, ...
Rakibul's user avatar
  • 11
1 vote
0 answers
95 views

i am developing an application that will hit an api containing user position from geolocator in background using flutter_background_service but sometimes this error occur and the service wont work. ...
Febiana Ramdani's user avatar
1 vote
1 answer
230 views

I am working on a Flutter project where I am using a background service (with flutter_background_service package) to handle a WebSocket connection. The WebSocket receives updates even when the app is ...
Omkar Gharge's user avatar
1 vote
1 answer
129 views

So I am using the flutter_background_service package to run a background service for the application. Currently I am using a Timer.periodic method to constantly hit an API every 5 seconds. But now I ...
Vishnubly's user avatar
  • 799
1 vote
0 answers
88 views

I am run flutter old project with flutter SDK : 2.5.0 , there is no any error (syntax error), but when i was run i got Error Launching lib/main.dart on sdk gphone64 x86 64 in debug mode... Running ...
Mobile VPN's user avatar
0 votes
0 answers
192 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
1 vote
0 answers
192 views

I'm developing a Flutter app using pedometer package to track steps of the user. I want to count steps when app is closed as well, so I used flutter_background_service package as well in order to use ...
Mustafa Karakuş's user avatar
0 votes
0 answers
179 views

I am new to the flutter, currently I am handling a flutter project that users can use the google map and geolocator to track down their commuting tracks, however what's the problem is that when I use ...
TeriChang's user avatar
0 votes
1 answer
384 views

I am trying to keep my App running at all times in the background, as it needs to check a Webserver for certain kinds of updates every 5 minutes. I followed the documentation of the plugin (https://...
LucasMnzb's user avatar
0 votes
4 answers
5k views

I'm currently having issues with Flutter background service, the moment the app launches, it crashes within a few seconds. I don't know what I'm doing wrong AndroidManifest.xml <uses-permission ...
Zionnite's user avatar
  • 493
0 votes
0 answers
708 views

I develop flutter app with background location listener and on most device is all work, but on some device system kill app when app in background(tray/lock screen/another app on foreground). I need ...
Scamper's user avatar
0 votes
1 answer
288 views

I have created an Android home screen widget with a button that executes Dart code (specifically, an API call) when clicked. Currently, this functionality only works when the app is in the background. ...
VENKAT RUTHVIK SAI KONDA's user avatar
4 votes
0 answers
4k views

I am currently working on a Flutter application that utilizes the flutter_background_service package for running background services. To implement the background service, I have integrated the ...
Chanaka's user avatar
  • 481
0 votes
1 answer
2k views

The title says almost all - I'm not sure how to call invoke and on methods from the Flutter_background_service plugin, so that UI will be able to receive messages from the background and vice-versa? ...
May's user avatar
  • 167
2 votes
1 answer
260 views

I want to play 1 (or more) scheduled short audio bells in the executeTask callback from the workmanager package when the user puts in the app in the background. executeTask callback always fires when ...
Kdon's user avatar
  • 1,317
1 vote
0 answers
783 views

I am using GeoLocator package (version 9.0.2). I am able to get the location as long as the app is in foreground with the permission set to "While Using the App". As soon as the app goes in ...
Saad Bashir's user avatar
  • 4,559
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
1 answer
526 views

Service works properly on Android 9 and above facing issues on devices 8<= Notification disappears in some duration and location services stops I have also disabled battery optimization but it did ...
Sumit yadu's user avatar
8 votes
1 answer
6k views

I'm getting this error from my flutter debug console: [VERBOSE-2:FlutterObservatoryPublisher.mm(143)] Could not register as server for FlutterObservatoryPublisher. Check your network settings and ...
Jayleen45's user avatar