Detect uninstall event in phonegap app

后端 未结 1 918
既然无缘
既然无缘 2021-01-01 03:06

When a user installs my app I register his registration ID (android) or device token (iOS) and send push notifications that work fine. But now I want to remove the user from

相关标签:
1条回答
  • 2021-01-01 03:47

    AFAIK, you cannot know when your app is uninstalled.

    For your android app, observe the response GCM returns when you send a notification. If it sends a NotRegistered message, you can remove that id from your server. Read how unregistration works

    For iOS : read this Question and its answer on SO

    0 讨论(0)
提交回复
热议问题