Android 中的 Google Analytics Referrer 问题

发布于 2024-11-25 04:07:56 字数 592 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

尾戒 2024-12-02 04:07:56

您需要添加到您的活动中:

    GoogleAnalyticsTracker GATracker = GoogleAnalyticsTracker.getInstance();
    GATracker.start("UA-XXXXXX-XX",20, this);

    GATracker.trackPageView("Page-to-track");

请参阅以下内容以获取完整设置:Google Analytics SDK for Android< /a>

You need to add to your Activity:

    GoogleAnalyticsTracker GATracker = GoogleAnalyticsTracker.getInstance();
    GATracker.start("UA-XXXXXX-XX",20, this);

    GATracker.trackPageView("Page-to-track");

Refer this for complete setting: Google Analytics SDK for Android

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文