Google Analytics V4广告系列衡量标准测试不起作用

时间:2014-07-09 07:38:58

标签: android android-intent google-analytics android-service google-analytics-v4

我开始使用Google Analytics V4实施广告系列衡量指标 https://developers.google.com/analytics/devguides/collection/android/v4/。 面对https://developers.google.com/analytics/solutions/testing-play-campaigns中提到的经过测试的Campign测量时的问题。每次我的日志显示“找不到广告系列数据”

我将google Play服务(版本:18)导入我的工作区并在我的项目中引用它

在我的清单文件中添加了以下行

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>

<meta-data android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />
<meta-data android:name="com.google.android.gms.analytics.globalConfigResource"
    android:resource="@xml/global_tracker" />

以及代码

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

稍后在res-&gt; xml下创建了global_tracker.xml文件。下面是我的xml文件

    <?xml version="1.0" encoding="utf-8" ?>

<resources xmlns:tools="http://schemas.android.com/tools"
    tools:ignore="TypographyDashes"
>
  <integer name="ga_sessionTimeout">300</integer>

    <!-- Enable automatic Activity measurement -->
    <bool name="ga_autoActivityTracking">true</bool>
    <bool name="ga_debug">true</bool>
    <string name="ga_logLevel">verbose</string>
    <string name="ga_dryrun">true</string>

    <!-- The screen names that will appear in reports -->

    <!--  The following value should be replaced with correct property id. -->
    <string name="ga_trackingId">UA-xxxxxxx-1</string>
</resources>

使用我的跟踪ID替换了跟踪ID

在测试广告系列测量时,我首先通过adb install将我的应用安装到我的设备上(Moto G(4.4.2))。确保应用程序未运行并广播上述链接中提到的意图。我在广播意图时获得了成功记录。

意图

E:\xxxxxxx\adt-bundle-windows-x86_64-20140321\sdk\platform-tools
>adb shell am broadcast -a com.android.vending.INSTALL_REFERRER -n <My Package name>/com.google.android.gms.analytics.CampaignTrackingReceiver --es "referrer" "utm_source=testsource"

响应:

Broadcasting: Intent { act=com.android.vending.INSTALL_REFERRER cmp=<My Package name>
>/com.google.android.gms.analytics.CampaignTrackingReceiver (has extras) }
Broadcast completed: result=0   

当我打开我的应用程序时,我总是得到“ I / GAV2(7342):主题[GAThread,5,main]:找不到广告系列数据。”我的日志中出错。

请有人让我知道为什么我没有获得广告系列数据?哪里出错了。

另外,为什么我在使用GAV4时在日志中显示“GAV2”

GA日志:

07-09 12:59:26.542: W/GAV2(20502): Thread[main,5,main]: Need to call initialize() and be in fallback mode to start dispatch.
07-09 12:59:31.568: I/GAV2(20502): Thread[GAThread,5,main]: No campaign data found.

注意:这是我第一次使用Google Analytics。由于我想首先检查我是否正在接收广告系列数据,因此我没有对GA实施任何跟踪器

编辑:当我手动触发广播意图按钮时,点击我的应用程序。当我重新启动我的应用程序时,我能够看到“Campaign found”日志。但是,如上所述,使用“adb shell”命令触发意图时也不会发生同样的情况。我怀疑可能是意图没有达到我的设备。有没有办法找到是否收到意图?

请帮忙

6 个答案:

答案 0 :(得分:6)

1&GT;对于初学者你可以混合两件事。 此链接适用于Google Analytics-v4 https://developers.google.com/analytics/devguides/collection/android/v4/ 此链接https://developers.google.com/analytics/solutions/testing-play-campaigns不适用于v4(页面太旧,此页面发布时没有GAV4。

2 - ;检查物理设备(Google Play服务)版本并将其更新为5.0(如果尚未完成)。

3&GT;你不需要下面提到的锅炉板代码。我认为这是针对GAV3而不是GAV4

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

更清晰的代码检查此链接。 No campaign data found. Using Google Analytics v4

4&GT;特别是对于GAV4(有我自己的经验),可以看到错误“找不到广告系列数据”。尝试以详细模式运行代码,您将看到GAV4正在与其主机建立连接。

GoogleAnalytics.getInstance(this).getLogger().setLogLevel(LogLevel.VERBOSE);

5个不要打开dry_run,您将无法在Google Analytics上看到数据。默认情况下,这是关闭的。

6个最后,Google Analytics内部会在“实时”下查看实时点击。

希望这会有所帮助。

答案 1 :(得分:1)

我有时遇到同样的问题,包括ClassNotFound的额外错误。

首先我建议看看Nishant的回复,还有一件事要检查他们是否解决了你的问题:

1)如果您有多个BroadcastReceiver:

1.1)确保你没有!只保留一个并将intent-filter添加到那个:

    <service android:name="com.google.android.gms.analytics.CampaignTrackingService"/>

    <receiver android:name="com.example.MyScheduleReceiver" 
            android:exported="true">
        <intent-filter >
            <action android:name="android.intent.action.ACTION_USER_PRESENT" />
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <action android:name="android.intent.action.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE"/>
            <action android:name="android.intent.action.ACTION_SCREEN_OFF" />
            <action android:name="android.intent.action.ACTION_SCREEN_ON" />
            <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
            <action android:name="com.android.vending.INSTALL_REFERRER" />
        </intent-filter>
    </receiver>

1.2)然后在BroadcastReceiver结束时将意图发送给右边的接收者:

  

@覆盖
    public void onReceive(Context context,Intent intent){

  //Do your code for the other intents


  new CampaignTrackingReceiver().onReceive(context, intent);  
     

}

2)在阅读Google的教程时,调用正确的Google Analytics版本也是一个问题,因为有些链接会将您重定向到旧版本的库。如果您使用的是v4,那么:

2.1)确保不包括libGoogleAnalyticsV2.jar

2.2)仔细检查您是否一直在编写 com.google.android.gms.analytics .CampaignTrackingService以及所有导入内容。

3)使用ADB检查其工作是否验证了以前的要点。在上面的例子中,调用ADB的右边是:

adb shell am broadcast -a com.android.vending.INSTALL_REFERRER -n com.example/com.example.MyScheduleReceiver --es  "referrer" "utm_source=testSource&utm_medium=testMedium&utm_term=testTerm&utm_content=testContent&utm_campaign=testCampaign"

答案 2 :(得分:0)

为此制作CustomReceiver,并将该发送意图发送到GoogleAnalyticsv4中的Google CampaignTrackingReceiver。

通过这个,您将在日志中获得 CampaignFound

public class CustomCampaignTrackingReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {

    new CampaignTrackingReceiver().onReceive(context, intent);
}
}

答案 3 :(得分:0)

将apk文件安装到您的设备。

adb install filename.apk

输入以下adb命令:

..\sdk\platform-tools>adb shell am broadcast -a com.android.vending.INSTALL_REFERRER -n your.package.name/com.google.android.gms.analytics.CampaignTrackingReceiver --es "referrer" "utm_source=testSource"

请注意,此链接中给出的命令具有V3接收器。

检查logcat。 Campaign Found消息应该在那里。确保在发送引荐来源时应用程序未运行。应用程序只有在完成后才能启动。

答案 4 :(得分:0)

可能对某人有用......我得到GAv4: Discarding hit. Missing tracking id parameter因为而不是:

GoogleAnalytics.getInstance(context).newTracker(R.xml.app_tracker);

我已添加

GoogleAnalytics.getInstance(context).newTracker(R.string.ga_trackingId);

请注意差异 xml.app_tracker vs string.ga_trackingId

使用xml.app_tracker配置文件!

答案 5 :(得分:0)

我检查了上一次实施。也许日志可以被打破。我在日志中收到“未找到广告系列数据”,但我在网络控制台中看到了真实数据。

我正在使用v4,我的清单看起来像这样:

<receiver android:name="com.google.android.gms.analytics.CampaignTrackingReceiver" 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" />
祝你好运