广告系列衡量不会发送到Google Analytics帐户

时间:2016-07-29 09:55:04

标签: google-analytics

我正在关注广告系列衡量指南

https://developers.google.com/analytics/devguides/collection/android/v4/campaigns

  1. Google Play广告系列归因
  2. 一般运动&流量来源归因
  3. 对于Google Play广告系列归因,在将广告系列服务和接收器添加到androidManifest.xml之后,我按照测试指南进行操作。 https://developers.google.com/analytics/solutions/testing-play-campaigns

    在日志中成功收到install referrer intent。

    07-29 17:05:32.968 8333-8363 /? D / GAv4:收到的安装活动:content = test_content,keyword = test_term,medium = test_medium,name = test_name,source = test_source

    但在我的谷歌分析账户中,收购 - >来源 - >一切都没有出现。任何人都可以知道根本原因是什么?

    我还实现了命中屏幕分析,这是有效的。

    我的google-services.json如下:

    {
      "project_info": {
        "project_number": "123456788680",
        "project_id": "test-app-project"
      },
      "client": [
        {
          "client_info": {
            "mobilesdk_app_id": "1:12345678680:android:488edac1c6c2df62",
            "android_client_info": {
              "package_name": "com.example.test.analytic"
            }
          },
          "oauth_client": [],
          "api_key": [
            {
              "current_key": "xxxxxxxx_xxxxxxxxxxxxxxKoT0XEkMgOCUe0c"
            }
          ],
          "services": {
            "analytics_service": {
              "status": 2,
              "analytics_property": {
                "tracking_id": "UA-xxxxxxxx-2"
              }
            },
            "appinvite_service": {
              "status": 1,
              "other_platform_oauth_client": []
            },
            "ads_service": {
              "status": 1
            }
          }
        },
        {
          "client_info": {
            "mobilesdk_app_id": "1:12345678680:android:6092a3d09b6b18d2",
            "android_client_info": {
              "package_name": "com.example.test"
            }
          },
          "oauth_client": [],
          "api_key": [
            {
              "current_key": "xxxxxxxx_xxxxxxxxxxxxxxKoT0XEkMgOCUe0c"
            }
          ],
          "services": {
            "analytics_service": {
              "status": 2,
              "analytics_property": {
                "tracking_id": "UA-xxxxxxxx-2"
              }
            },
            "appinvite_service": {
              "status": 1,
              "other_platform_oauth_client": []
            },
            "ads_service": {
              "status": 1
            }
          }
        }
      ],
      "configuration_version": "1"
    }
    

    我修改了项目名称和要在此处发布的密钥。在我的实际项目中,我没有修改任何东西。有2个客户端具有不同的包名称,因为我有2个项目,一个是主入口应用程序,另一个是库。所有这两个都需要发送谷歌分析信息。但是在一个应用程序中,所以我将其设置为在请求配置表单google时使用相同的分析属性。这有影响吗?我认为不应该。

    enter image description here

    任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

对我来说,在第一次构建跟踪器之前没有发送信息。 发送广播后我也只得到:

D/GAv4: Received installation campaign: content=test_content, keyword=test_term, medium=test_medium, name=test_name, source=test_source

然后,在将我自己的第一个跟踪信息发送给Google Analytis之后,我得到了:

D/GAv4: Sending first hit to property: UA-63098830-1
D/GAv4: Found relevant installation campaign: content=test_content, keyword=test_term, medium=test_medium, name=test_name, source=test_source
D/GAv4: Sending installation campaign to: UA-63098830-1, content=test_content, keyword=test_term, medium=test_medium, name=test_name, source=test_source