我可以使用 google firebase analytics 和 android 应用程序记录什么样的数据?
What kind of data I can log with google firebase analytics with android application?
我可以使用 google firebase analytics 和 android 应用程序记录什么样的数据?
比如在搜索方式中,是否可以报告搜索到的词?我可以比较它们吗?或计算每个单词?
Firebase.Analytics.FirebaseAnalytics.LogEvent (
Firebase.Analytics.FirebaseAnalytics.EventSearch,
new Firebase.Analytics.Parameter[] {
new Firebase.Analytics.Parameter (
Firebase.Analytics.FirebaseAnalytics.ParameterSearchTerm, termText),
}
);
我使用了 DebugView 面板并发送了我的数据,但它们存储在哪里?
或者我可以使用此代码将我的用户 ID 与日志事件一起存储吗?
FirebaseAnalytics.LogEvent("progress", "userid" ,SystemInfo.deviceUniqueIdentifier);
好的,经过反复尝试,我发现如果我们在 firebase 控制台中添加新参数,需要 24 小时才能从应用程序生效,但我们可以在 DebugView 中看到发送的数据。
link: https://support.google.com/firebase/answer/7397304?hl=en
我可以使用 google firebase analytics 和 android 应用程序记录什么样的数据?
比如在搜索方式中,是否可以报告搜索到的词?我可以比较它们吗?或计算每个单词?
Firebase.Analytics.FirebaseAnalytics.LogEvent (
Firebase.Analytics.FirebaseAnalytics.EventSearch,
new Firebase.Analytics.Parameter[] {
new Firebase.Analytics.Parameter (
Firebase.Analytics.FirebaseAnalytics.ParameterSearchTerm, termText),
}
);
我使用了 DebugView 面板并发送了我的数据,但它们存储在哪里?
或者我可以使用此代码将我的用户 ID 与日志事件一起存储吗?
FirebaseAnalytics.LogEvent("progress", "userid" ,SystemInfo.deviceUniqueIdentifier);
好的,经过反复尝试,我发现如果我们在 firebase 控制台中添加新参数,需要 24 小时才能从应用程序生效,但我们可以在 DebugView 中看到发送的数据。
link: https://support.google.com/firebase/answer/7397304?hl=en