gpt4 book ai didi

android - Firebase Analytics 自定义值列表

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:11:41 26 4
gpt4 key购买 nike

我正在尝试使用 bundle 方法 putStringArrayList() 但我总是在 firebase 控制台中遇到错误。

Bundle bundle = new Bundle();

ArrayList<String> types = new ArrayList<String>();
types.add("test1");
types.add("test2");
bundle.putStringArrayList("Types", types);

mFirebaseAnalytics.logEvent("MainActivity", bundle);

在 Firebase 控制台中我得到这个错误:

error_value Types
firebase_error 4

还有指向 Analytics Error Codes 的链接(事件参数值太长)。

我应该如何为特定键发送多个值?

最佳答案

根据 logEvent 的 API 文档,params bundle 描述说

String, long and double param types are supported.

您收到此错误是因为您使用的参数类型字符串数组列表 的映射,不支持。看看this discussion在 firebase 谷歌组中。

您可以改为执行类似这样的操作,这在本质上是相同的。

bundle.putString("Types", types.toString());

关于android - Firebase Analytics 自定义值列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44421234/

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