我按照这里的说明进行操作:
https://developers.google.com/analytics/devguides/collection/android/v3/
我将 analytics.xml 文件实现为:
<resources>
<!--Replace placeholder ID with your tracking ID-->
<string name="ga_trackingId">UA-XXXX-Y</string>
<!--Enable automatic activity tracking-->
<bool name="ga_autoActivityTracking">true</bool>
<!--Enable automatic exception tracking-->
<bool name="ga_reportUncaughtExceptions">true</bool>
</resources>
最后它说“重要提示:不要在 ga_trackingId 字符串中编码破折号。这样做会阻止您在报告中看到任何数据。”
这是否意味着我应该省略破折号并放置类似 UAXXXXY 的内容?在所有其他示例中,我在网上看到,人们使用破折号?请澄清