1

Is there a way to get notification when a user uninstalls my app from his/her android device?

Kevin
  • 53,822
  • 15
  • 101
  • 132
ozkolonur
  • 1,430
  • 1
  • 15
  • 22

2 Answers2

2

No, you can get the other applications uninstall events using the PACKAGE_REMOVED broadcast receiver but not the application uninstalled itself (because it have been removed) see the documentation here.

Jordi Coscolla
  • 1,066
  • 6
  • 8
1

Nope, there's no way since, as far as I know, there are no callbacks into your app when the app is uninstalled from the device.

LuxuryMode
  • 33,401
  • 34
  • 117
  • 188