本文介绍了firebase Analytics:Android应用程序卸载统计信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我安装了Firebase SDK,并将以下两行添加到MainActivity.java

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

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

我需要卸载统计信息(app_remove事件),例如哪个设备用户已卸载了该应用.我是否需要添加更多的Firebase API或此设置足够?

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?

推荐答案

要获取app_remove统计信息,无需添加任何Java代码.每当用户卸载应用程序时,它就会在控制台的events部分下得到更新.

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.

这篇关于firebase Analytics:Android应用程序卸载统计信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 07:52