Android 版 Google Analytics 和安装推荐

发布于 2024-12-01 04:52:48 字数 494 浏览 1 评论 0原文

如果我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

定格我的天空 2024-12-08 04:52:48

我想您所有的问题都可以在此处找到答案。

总之:

I think all of your questions are answered here.

In summary:

  • You need to include the Google Analytics SDK for Android
  • You need a UA number, which you provide when you call startNewSession: tracker.startNewSession("UA-YOUR-ACCOUNT-HERE", this);
  • Google provides a fully functional sample application which starts/stops the 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)
  • Include AnalyticsReceiver to track referrals
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文