What are steps which happen when someone uninstall mobile app on iOS and android. Is there a way for developer to know that app is being uninstalled? I found about ACTION_PACKAGE_REMOVED in android but this isn't broadcasted to app being uninstalled.
Asked
Active
Viewed 48 times
0
-
Possible duplicate of [Is it possible to detect Android app uninstall?](https://stackoverflow.com/questions/6209730/is-it-possible-to-detect-android-app-uninstall) – Iulian Popescu Sep 21 '17 at 09:50
-
https://stackoverflow.com/questions/6209730/is-it-possible-to-detect-android-app-uninstall – Sep 21 '17 at 09:52
-
https://stackoverflow.com/questions/3013823/perform-a-task-on-uninstall-in-android – Sep 21 '17 at 09:52
-
You can get the broadcast for any other app getting uninstalled but never for your own app. – Akash Patel Sep 21 '17 at 09:54
1 Answers
0
Your app, which is being uninstalled cannot receive the ACTION_PACKAGE_REMOVED broadcast.
You can use firebase analytics to know the details of uninstallation of your app. Check out the docs here.

Nabin Bhandari
- 15,949
- 6
- 45
- 59
-
-
@IulianPopescu everything is provided in the docs of firebase in the link I provided. – Nabin Bhandari Sep 21 '17 at 09:55
-
Where? I wasn't able to find how you can detect when you app is uninstalled? – Iulian Popescu Sep 21 '17 at 09:57
-
The reports are seen automatically in the firebase console once you finish firebase integration in your app. – Nabin Bhandari Sep 21 '17 at 09:58
-
The link you provided simply directs to Firebase Analytics, no uninstall or something. Can you share please the exact link? – Iulian Popescu Sep 21 '17 at 10:07