How to catch application uninstalling on device and let server know about this (iOS/Android)

前端 未结 2 1672
闹比i
闹比i 2020-12-09 13:13

Problem Description:

We have a service which has applications for main mobile OS’s. We use push notifications. When user is log in, we store his dev

相关标签:
2条回答
  • 2020-12-09 13:47

    That depends on which push service you are using. Afaik, if you are using C2DM, the act of uninstalling the application will automatically unregister it from C2DM.

    Edit:

    Oh, and about iOS - afaik it does not directly track uninstalled apps, it does however come with a failed notification feedback service that after a sequence of failed notifications (reported by the device to the push network) will notify you - allowing you to clean up after an uninstalled app.

    0 讨论(0)
  • 2020-12-09 13:47

    I cannot speak for iOS. You cannot get control when your application is uninstalled in Android.

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