简体   繁体   English

Android App中的Google Analytics(分析)广告系列跟踪

[英]Google Analytics Campaign tracking in Android App

We have implemented Google Analytics Campaign tracking code for our Android App. 我们已经为我们的Android应用程序实现了Google Analytics(分析)广告系列跟踪代码。 Everything looks fine except the users count. 除了用户计数之外,其他一切看起来都不错。 Google Analytics Results Google Analytics(分析)结果

In the image you can see that New Users showing as zero and sessions showing the count. 在该图像中,您可以看到新用户显示为零,会话显示计数。 What could be the reason for new users not showing the count? 新用户不显示该计数的原因可能是什么?

Here is my code: 这是我的代码:

 <receiver android:name="com.google.android.gms.analytics.CampaignTrackingReceiver"
        android:enabled="true"
        android:exported="true">
        <intent-filter>
            <action android:name="com.android.vending.INSTALL_REFERRER" />
        </intent-filter>
    </receiver>
    <service android:name="com.google.android.gms.analytics.CampaignTrackingService"
        android:enabled="true"
        android:exported="false" />

mTracker.send(new HitBuilders.ScreenViewBuilder()
            .setCampaignParamsFromUrl(campaignData).build());

Are your campaigns targeting new users? 您的广告系列是否针对新用户? If not, the new users metric possibly will not increase. 如果不是,则新用户指标可能不会增加。 Another factor to not see new users in your campaigns might be that there was already tracking code installed in your app and you now added the campaign tracking feature(meaning that these users are recognises as returning by GA). 在您的广告系列中看不到新用户的另一个因素可能是您的应用中已经安装了跟踪代码,并且您现在添加了广告系列跟踪功能(这意味着这些用户被Google Analytics(分析)识别为回国)。 That is because the ga:newUsers is described in GA as: The number of sessions marked as a user's first sessions So if your campaign does not target new users this is to be expected. 这是因为ga:newUsers在GA中被描述为: 标记为用户的首次会话的会话数。因此,如果您的广告系列没有定位到新用户,这是可以预期的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM