gpt4 book ai didi

android - Firebase 分析、自定义事件值

转载 作者:行者123 更新时间:2023-11-29 17:01:07 26 4
gpt4 key购买 nike

我正在尝试在我的应用中设置一些分析。用户可以将 3 个项目添加到列表中,我想知道用户拥有多少有效的 item1、item2 和 item此外,我还想知道它有多少过期的item1、item2 和item3。我是这样做的:

Bundle bundle = new Bundle();
bundle.putInt("valid_item1", validCount1);
bundle.putInt("valid_item2", validCount2);
bundle.putInt("valid_item3", validCount3);
bundle.putInt("expired_item1", expireCount1);
bundle.putInt("expired_item2", expireCount2);
bundle.putInt("expired_item3", expireCount3);
FirebaseAnalytics.getInstance(this).logEvent("", bundle);

我期待在我的 Firebase 分析仪表板中看到一个图表,显示有多少用户拥有 valid_item1、valid_item2 等...

这有可能实现吗?还是我必须创建 6 个不同的事件?

最佳答案

很遗憾,Firebase 不会在您的事件中显示自定义参数。不过,您仍然可以记录它们,并且它们会附加到该事件。要查看它们,您必须导出到 BigQuery。

参见 this question's answer .

关于android - Firebase 分析、自定义事件值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42974637/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com