是否可以在firebase上自动收集的事件上附加自定义参数?

时间:2017-03-02 09:37:30

标签: android firebase uninstall firebase-analytics

在firebase分析中有一个名为app_remove的自动收集事件,我想知道是否可以附加自定义参数。

我想要做的是跟踪卸载我的应用的用户。我当然找到this,但它不会在Lollipop及以上版本上工作。

所以我想知道这样的事情是否有效:

Bundle b = new Bundle();
b.putString("user_email", email);
// attach bundle to app_remove event

或者我可以设置userId

firebaseAnalytics.setUserId(email);

1 个答案:

答案 0 :(得分:1)

抱歉,您无法更改自动收集的事件报告方式。您只能为您在代码中创建和报告的事件设置属性。