No campaign data found. Using Google Analytics v4

前端 未结 2 1190
再見小時候
再見小時候 2021-01-13 23:52

I am getting this error \"I/GAV4(7915): Thread[GAThread,5,main]: No campaign data found.\" Anyone has idea as what i going wrong ?

  • I am usin
相关标签:
2条回答
  • 2021-01-14 00:36

    For this make CustomReceiver and from that send intent to google CampaignTrackingReceiver in GoogleAnalyticsv4.

    By this you will get CampaignFound in logs

    public class CustomCampaignTrackingReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
    
    new CampaignTrackingReceiver().onReceive(context, intent);
    }
    }
    
    0 讨论(0)
  • 2021-01-14 00:57

    ok this thing works just fine. I was looking under Apps-overview in Google Analytics. Reports are not generated there in realtime. There is an specific tab for real-time reports under Google Analytics. This is where we need to see.

    0 讨论(0)
提交回复
热议问题