Android 中的 Google Analytics Referrer 问题
我在 Android 应用程序中让推荐人跟踪与 GA (Google Analytics) 配合使用时遇到了一些问题。 GA 文档中没有太多信息。顺便说一句,我只使用 GA 来跟踪推荐人。没有别的了。
在我的清单文件中,我的应用程序标签中确实有这样的内容:
<receiver android:name="com.google.android.apps.analytics.AnalyticsReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
然后我使用生成器创建了一个 URL,对其进行了测试,但仍然没有显示任何统计信息。
文档中没有其他内容。没有任何东西可以将此推荐链接到我的 GA 帐户,我认为这很奇怪。我的活动中是否需要编写某些内容才能将推荐人信息发送到我的 GA 帐户?
I've been having some trouble getting my referrer tracking to work with GA (Google Analytics) in my Android app. There isn't much info in the GA Doc. I am only using GA to track the referrer, by the way. Nothing else.
In my manifest file i have exactly this within the application tags:
<receiver android:name="com.google.android.apps.analytics.AnalyticsReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
I have then created a URL using the generator, tested it but still no stats are showing at all.
There was nothing else in the docs. Nothing to link this referral to my GA account, which I think is very strange. Is there something in my Activity that I have to write to send the referrer information to my GA account?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加到您的活动中:
请参阅以下内容以获取完整设置:Google Analytics SDK for Android< /a>
You need to add to your Activity:
Refer this for complete setting: Google Analytics SDK for Android