How to track events for user who uninstall app in Firebase

Viewed 9086

I want to track events on user who uninstall my game. I want to know how many levels user passed before they uninstal my game. Is there.any way to get list od this kind of users and see analytics for each user separately?

What firebase tools should I use to get thise informations? Im using android.

Thanks in advance

2 Answers

The best approach it's to use Firebase Analytics for Android with event logging which automatically log app uninstall using the app_remove event. You can find a complete list of automatically logged event for both Android and iOS here

Moreover you should save events everytime the user passes a level in your game or performs an action you are interested in.

After some time you will have enough data to know exactly where most people stop playing the game or uninstall it and you can start corrective actions trying to prevent this (or at least affecting some of them)

NOTE: answer updated thanks to Frank Van Puffelen comment

Use simple google analytics and define event method from it or also you can use firebase analytics to track your app performance and log.

Related