Android 版 Google Analytics 和安装推荐
如果我在 AndroidManifest.xml 中包含以下代码,那么它会发送通知通知还是需要包含更多内容。
<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>
如何在Google帐户中查看安装报告以及帐户中需要设置哪些参数?
UA-帐号是网站使用的id,是android应用程序安装通知所必需的。
任何人都可以指定在 Google Analytics 中查看 Android 应用程序安装的确切过程以及所需的代码片段。
if I include the code following code in AndroidManifest.xml, then will it send a notification on notification or there is something more to be included.
<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>
How to view installation report in Google Account and What parameters are required to be set in the account?
UA-Account number is the id to be used for websites, is it required for android app installation notification.
Can any one specify the exact procedure to view Android application installation in Google Analytics and coding snippets required.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您所有的问题都可以在此处找到答案。
总之:
tracker.startNewSession("UA-YOUR-ACCOUNT-HERE", this);
GoogleAnalyticsTracker
实例的示例应用程序在您的活动中并跟踪事件和页面视图,以及分派结果(在分派到分析服务器之前存储在手机本地)I think all of your questions are answered here.
In summary:
tracker.startNewSession("UA-YOUR-ACCOUNT-HERE", this);
GoogleAnalyticsTracker
instance in your Activity and tracks events and page views, as well as dispatches the results (stored locally on the phone until dispatched to the analytics server)