2

I am trying to send a push notification when user is going to uninstall my Android app. My idea is to use Firebase Cloud Messaging and Google Analytics for Firebase Triggers. In order to be able to use triggers I have been marked "app_remove" event as conversion in Firebase Console of my app. It is possible send notifications using Firebase Cloud Messaging triggered by a Firebase function as described in this question, but when my app is uninstalled It will not be able to show incoming message from FCM as a push notification. It is possible to setup the incoming message to be displayed as push notification even my app is uninstalled?

AL.
  • 36,815
  • 10
  • 142
  • 281
MeLean
  • 3,092
  • 6
  • 29
  • 43

1 Answers1

2

It is possible to setup the incoming message to be displayed as push notification even my app is uninstalled?

Not possible. When your app is uninstalled, the corresponding registration token tied to that specific app instance is also invalidated.

The registration token is what FCM uses to send messages to the corresponding device, if invalidated, FCM will no longer have any way to send messages to that device.

AL.
  • 36,815
  • 10
  • 142
  • 281