Is it possible to detect Android app uninstall?

后端 未结 7 845
清酒与你
清酒与你 2020-11-22 11:18

My app is using Google\'s C2DM (push notification) to notify users about new activity from friends. Once they install the app I register the device with C2DM servers and sto

相关标签:
7条回答
  • 2020-11-22 11:53

    Yes, but it is quite hacky. The method is based on the fact that the first thing android does when uninstalling your app is deleting your data file. So you could use a file watcher to detect the deletion. Also you need to write this in native code. If you write your code in java, your app will be uninstalled before it could execute any code. please see this demo : https://github.com/sevenler/Uninstall_Statics

    0 讨论(0)
  • 2020-11-22 11:57

    Look into this GCM doc: GCM Unregistration

    You should never unregister your app. This is taken care from server side.

    0 讨论(0)
  • 2020-11-22 11:59

    Unfortunately the ACTION_PACKAGE_REMOVED intent will be sent out to all receivers except for your own. This is confirmed here.

    Some questions for your C2DM plan, since I'm not very familiar with it. If the user just leaves their device off for a long period of time, will that trigger the error condition you use? How does C2DM actually report an "unreachable" device? Is that a condition that only occurs when it attempts to send the push notification and fails or is it when it somehow determines it reaches the device but fails to be handled properly? Obviously in the second scenario your plan would work, but I can see some "false positives" occurring otherwise.

    Older SO question for reference: android not receiving Intent ACTION_PACKAGE_REMOVED in the removed package

    0 讨论(0)
  • Google C2DM service is working in passive mode when it comes to detecting uninstalled applications.

    First push notification after uninstalling your application (without unregistering from C2DM!!!) will NOT return any error in response. However, the second push notification will return an "invalid registration" or "not registered" error codes where you can realize the application was uninstalled.

    The reason is that C2DM servers return the response code immediately and only then tries to push the client. When client respond that an application was uninstalled, it is deleted from C2DM servers. Next push attempt will return an error code immediately.

    0 讨论(0)
  • 2020-11-22 12:05

    I have some points to tell you ,

    1. Android community recommends you to use GCM instead of C2DM as it's no longer available.
    2. In android there is no way for applications to get itself notified that app is getting uninstalled.
    3. in GCM if you want to stop sending messages to uninstalled apps you can refer this

    When you send messages to GCM from your server you will get response string.In that if you are getting error as "NotRegistered, you should remove the registration ID from your server database because the application was uninstalled from the device or it does not have a broadcast receiver configured to receive com.google.android.c2dm.intent.RECEIVE intents."

    0 讨论(0)
  • 2020-11-22 12:11

    I know only one way with server response 200 with "NotRegistered" message in body.

    NotRegistered — The registration_id is no longer valid, for example user has uninstalled the application or turned off notifications. Sender should stop sending messages to this device.

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