其他分享
首页 > 其他分享> > Google Analytics(分析)报告中的自定义维度和指标(Android SDK)

Google Analytics(分析)报告中的自定义维度和指标(Android SDK)

作者:互联网

通过使用Google Analytics(分析)Android SDK 3,我可以成功查看本机Android应用程序的统计信息.

关于this documentation,我为我的应用创建了自定义尺寸. (似乎不需要从Web界面设置尺寸.编码就足够了)

// May return null if EasyTracker has not yet been initialized with a
// property ID.
EasyTracker easyTracker = EasyTracker.getInstance();

// Send the custom dimension value with a screen view.
// Note that the value only needs to be sent once, so it is set on the Map,
// not the tracker.
easyTracker.send(MapBuilder
    .createAppView("Home screen")
    .set(Fields.customDimension(1), "premiumUser");
    .build()
);

但是,当我检查Google Analytics(分析)网络界面时,在任何地方都看不到尺寸.在分析的“屏幕”部分中,存在自定义变量,但没有放置尺寸的地方.如何在分析报告中查看自定义维度?

解决方法:

您必须创建一个包含自定义指标,维度…的自定义报告,

Customisation tab -> New custom report

标签:google-analytics,android
来源: https://codeday.me/bug/20191122/2060013.html