通过使用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
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。