2016-07-29 46 views
0

我下面運動測量指南做運動測量不會被髮送到谷歌Analytics帳戶

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

  1. 谷歌播放廣告系列歸因
  2. 一般廣告活動&流量來源歸因

對於Google Play廣告系列歸因,將廣告系列服務和接收者添加到and後roidManifest.xml,我遵循測試指南。 https://developers.google.com/analytics/solutions/testing-play-campaigns

在日誌中成功收到了安裝referrer的意圖。

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 Analytics分析帳戶中,Acquisition - > Sources - > All,任何人都可以有任何想法是什麼根源?

我也實現了熱門屏幕分析,這是工作。

我的谷歌,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

誰能幫助我?

回答

0

對我而言,第一次構建跟蹤器之前未發送信息。 發送廣播後,我也只得到:

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

然後發送我的第一個自己的跟蹤信息,以谷歌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 
相關問題