3

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

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
Jovan
  • 4,684
  • 13
  • 64
  • 98

2 Answers2

5

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

MatPag
  • 41,742
  • 14
  • 105
  • 114
  • 2
    Thanks for the answer, but I want to track user flow , something like stream view but sorted by some event. I want to now what events( i will add custom events in my game ) occurr when user uninstall app. – Jovan Sep 13 '18 at 17:24
  • @Jovan I suggest you to think twice about it. You should send an event for EVERY user and distinguish about them. It's something custom you need to build from scratch and probably has no real value at all. Because users can have 10 reasons to uninstall your app and even tracking all their actions you won't known the truth for all of them. Aggregating results with Analytics it's better, if you have 10.000 events for level 1 passed and 1000 events for level 2 passed, you immediately know the problem is between level 1 and 2 and so on.... – MatPag Sep 15 '18 at 10:58
1

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

Praveen Kumar
  • 277
  • 2
  • 12