使用 GoogleAnalytics 忽略多个安装活动时出错
Error Ignoring multiple install campaigns using GoogleAnalytics
当我看到以下错误日志时,我正在为我的应用测试 Google Play 活动归因:
06-19 14:17:55.416 14424-14466/com.myapp.android E/GAv4﹕ Ignoring multiple install campaigns. original, new: utm_source=testSource, utm_source=testSource2
testSource 和 testSource2 是 utm_source 我使用以下测试广播方法生成的:
adb shell am broadcast -a com.android.vending.INSTALL_REFERRER -n com.myapp.android/com.google.android.gms.analytics.CampaignTrackingReceiver --es "referrer" "utm_source=testSource&utm_medium=testMedium&utm_term=testTerm&utm_content=testContent&utm_campaign=testCampaign"
我在 GoogleAnalytics 网站上只看到 testSource 的命中率。
谁能解释一下这个错误是什么意思?
为什么 testSource2 没有显示在来自不同来源的 GoogleAnalytics 网站上?
错误发生是因为 Google Play Services 在下载应用程序时仅广播一次。
文档说:
When your app is downloaded from Google Play Store, the Play Store app broadcasts an INTENT_REFERRER to your app during installation. This intent contains the value of the referrer parameter of the link used to reach your app's Google Play Store page, if one was present.
我在同一个已安装的 apk 上测试另一个来源。
要测试新来源:
1) Uninstall the apk
2) Broadcast again.
一段时间后,您肯定会在 Google Analytics 网站上看到新来源的点击率。
当我看到以下错误日志时,我正在为我的应用测试 Google Play 活动归因:
06-19 14:17:55.416 14424-14466/com.myapp.android E/GAv4﹕ Ignoring multiple install campaigns. original, new: utm_source=testSource, utm_source=testSource2
testSource 和 testSource2 是 utm_source 我使用以下测试广播方法生成的:
adb shell am broadcast -a com.android.vending.INSTALL_REFERRER -n com.myapp.android/com.google.android.gms.analytics.CampaignTrackingReceiver --es "referrer" "utm_source=testSource&utm_medium=testMedium&utm_term=testTerm&utm_content=testContent&utm_campaign=testCampaign"
我在 GoogleAnalytics 网站上只看到 testSource 的命中率。
谁能解释一下这个错误是什么意思? 为什么 testSource2 没有显示在来自不同来源的 GoogleAnalytics 网站上?
错误发生是因为 Google Play Services 在下载应用程序时仅广播一次。
文档说:
When your app is downloaded from Google Play Store, the Play Store app broadcasts an INTENT_REFERRER to your app during installation. This intent contains the value of the referrer parameter of the link used to reach your app's Google Play Store page, if one was present.
我在同一个已安装的 apk 上测试另一个来源。 要测试新来源:
1) Uninstall the apk
2) Broadcast again.
一段时间后,您肯定会在 Google Analytics 网站上看到新来源的点击率。