通过使用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