No campaign data found. Using Google Analytics v4

北城余情 提交于 2019-12-01 06:45:03

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.

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);
}
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!