Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

firebase Analytics : Android app uninstall stats

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?

like image 786
webminal.org Avatar asked Dec 18 '22 14:12

webminal.org


1 Answers

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

like image 144
gegobyte Avatar answered Jan 09 '23 02:01

gegobyte