Manpreet Kaur
Manpreet Kaur

Reputation: 416

DO android_alarm_manager Work on IOS or it only support android?

I am working on flutter App where I use android alarm manager to send notification at particular time duration, once alarm triggers. This work properly in android but not in IOS. Is there any possibility to use Android Alarm Manager in IOS or is there any another way to send notification at particular time duration in IOS.

Upvotes: 3

Views: 1260

Answers (2)

nyarian
nyarian

Reputation: 4375

android_alarm_manager is just a Flutter wrapper over Android's intrinsic AlarmManager - works only for Android and does not provide any iOS mirror (like shared_preferences plugin does via using NSUserDefaults for iOS and SharedPreferences for Android). You can check it out yourself.

Upvotes: 1

Rahul Tumpala
Rahul Tumpala

Reputation: 63

There is NO possibility to use Android Alarm Manager in iOS. I suggest you to check out the Firebase Push Notification Service if needed.

Upvotes: 0

Related Questions