6

I installed Firebase SDK and add below two lines to MainActivity.java

private FirebaseAnalytics mFirebaseAnalytics;
mFirebaseAnalytics = FirebaseAnalytics.getInstance(this);

I need uninstall stats (app_remove event) - like which device user uninstalled the app. Do I need to add more firebase api or is this setup enough?

webminal.org
  • 44,948
  • 37
  • 94
  • 125

1 Answers1

11

To get the app_remove stats, there is no need to add any Java code. Whenever user uninstalls an app, it gets updated in the console under events section.

enter image description here

gegobyte
  • 4,945
  • 10
  • 46
  • 76
  • It will also give device/OS information of that un-installed device? – webminal.org Aug 31 '16 at 02:56
  • 1
    @lakshmipathi No it doesn't give device/OS information but it tells how many users from a particular country uninstalled the app along with their gender and age. – gegobyte Aug 31 '16 at 03:00
  • Does firebase has option to find out that info. Something like - we can hook to this uninstall event & upload device/OS into firebase ? Is that possible (I'm pretty new to firebase, dont have much idea about it) – webminal.org Aug 31 '16 at 03:26
  • 1
    @lakshmipathi I have no idea about that :(, I suggest you to ask this question on [Firebase Twitter](https://twitter.com/Firebase) with the hashtag #AskFirebase. On Youtube, they weekly release a video that answers questions tagged with #AskFirebase. They might answer this question. – gegobyte Aug 31 '16 at 04:09
  • @ChinmaySarupria Did you find any good way to track uninstalls at user level? I'm struggling with Segment.io/Clevertap but unable to get data at one place till now i.e. in segment or our own database. – Harshit Choudhary Jan 20 '17 at 15:16
  • is it possible to know the last active activity before uninstall? – ASN Dec 04 '18 at 03:14
  • Yes, you'll have to link your Firebase with BigQuery and query your it. Read more about it here: https://medium.com/me/stats/post/c4657e2465c6 – Nishant Shah Dec 10 '18 at 10:25