Push notification not received when app is terminated

When the app in foreground and background the notification is received successfully, but when the app is terminated, the message isn’t received.

Then is it required to implement a background Isolate to receive the push notification while FCM already supports the feature?

Hi @adel_kasno and @Hyungil_Kang

The push notifications for Flutter (as well as Android) are delivered in the following cases:

  • app is in foreground
  • app is in background
  • app is closed (swiped out of the recent apps list). Please note if you force stop the app, background services will be stopped as well and it’s expected behaviour.

I’ve checked all these scenarios right now and everything worked well for me.

Best Regards,
Maksym

Very good then!!