Andrew Engelbrecht

Results 76 comments of Andrew Engelbrecht

> The plugin does technically start a foreground service, but not in the normal way. A normal foreground service is associated with some work, like downloads, media playback, etc. In...

Hey, thanks for the reply. I was recently working on some code that coincidentally touches upon some of the topics you're asking about and sharing. Perhaps seeing it will offer...

Someone testing my app pointed out that despite swiping my app away in the task list, the foreground notification remained, but the background process seemed to stop delivering other notifications,...

I decided to test out the `AndroidServiceStartType.startRedeliverIntent` option with a foreground notification made by this package on Android 15. I added a timestamp to the foreground notification that gets updated...

I ran another test, this time leaving my phone unplugged overnight. I checked it in the morning, and the notification was up to date, so it seems to be working....

Using version 18.0.0 of flutter_local_notifications seems to prevent the random crashes that were also occurring with similar stack traces. Hopefully this also resolves the issues with starting the app after...

I'm also seeing this on the 17.2.3 version of the library, but I don't recall this error before, so it's possible that the crashing behavior could be due to a...

I believe that this is where the error is occuring: https://github.com/MaikuB/flutter_local_notifications/blob/master/flutter_local_notifications/android/src/main/java/com/dexterous/flutterlocalnotifications/ForegroundService.java#L21 I wonder if the `ForegroundServiceStartParameter` class' static variables are not initialized before they are accessed? One possible reason for...

Thanks for both of your help with this. : ) I am using to restart the app if the OS reboots, and it may eventually also handle restarting after app...