2

我正在使用 Google Analytics 来跟踪我的 android 应用程序。我的 analytics.xml 文件粘贴在下面:

<!-- Replace placeholder ID with your tracking ID -->
<string name="ga_trackingId">UA-36116792-1</string>

<!-- Enable Activity tracking -->
<bool name="ga_autoActivityTracking">true</bool>

<!-- Enable automatic exception tracking -->
<bool name="ga_reportUncaughtExceptions">true</bool>

<string name="ga_appName">MyRemoteApp</string>
<string name="ga_appVersion">V3</string>

<bool name="ga_anonymizeIp">true</bool>
<bool name="ga_debug">true</bool>


<string name="philips.myremote.epg.EPGViewforPhone">TV Guide</string> 

我期望在 Google Analytics(分析)仪表板中,屏幕视图应该在标题“电视指南”下可见,但我得到的是“philips.myremote.epg.EPGViewforPhone”。我该如何解决这个问题或我的代码有什么问题?

4

1 回答 1

1

Google Analytics 使用规范类名称从资源中获取活动名称。

在日志中写入您的活动规范名称:

Log.i("TAG", getClass().getCanonicalName());

并在资源中使用此名称作为键。

于 2013-06-17T10:31:38.537 回答