sirmamedical

Results 4 comments of sirmamedical

I confirm the issue. It is a blocker because no alarms are triggered. I see the following log: ``` 2022-09-08 20:19:04.272 10913-10913/? I/AndroidAlarmManagerPlugin: onAttachedToEngine 2022-09-08 20:19:04.620 10913-10913/? I/FlutterBackgroundExecutor: Starting AlarmService......

For me the only way to make it work was to add `@pragma('vm:entry-point')` above my static alarm callback handler and also in `android_alarm_manager_plus.dart` above `_alarmManagerCallbackDispatcher()` as: ``` @pragma('vm:entry-point') void _alarmManagerCallbackDispatcher()...

I can't make it work on iOS. On Android everything is fine but on iOS I always get the following error: MissingPluginException(No implementation found for method getApplicationDocumentsDirectory on channel plugins.flutter.io/path_provider_ios)...

@brunodmn I haven't tried with `getTemporaryDirectory()` because I need `getApplicationDocumentsDirectory()` in order to use Drift plugin from the background task and the initial issue happened when I called a db...