0

As I understood from here, swiping the app from the recent tasks kills it. In that case how can fcm still send notification to apps killed in that matter ?

On some devices that's not possible, so surely some app process is still running to receive these data notifications.

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
sam winston
  • 162
  • 1
  • 13

1 Answers1

4

On Android, Firebase Cloud Messaging works in tandem with Play services, which runs in a privileged process that can't be killed. It's responsible for receiving the message and passing that along to the destination app.

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441