0

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.

puneet
  • 530
  • 1
  • 3
  • 8
  • 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 Answers1

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