I am using reywood/meteor-iron-router-ga package for my Google analytics but i do not know why events or Real time events are not logged from mobile app. I did simple configurations for this but not worked. I also used Google Analytics debugger to detect the problem but it looks fine
- Link Analytics and Search Console -> RESOLVED
Bad Default URL -> RESOLVED
This is the output of any event click on my app. I also try to replace reywood/meteor-iron-router-ga with simple JavaScript Analytics.js but still no benefit.
ga('send', 'event', {
eventCategory: Category,
eventAction: Action,
eventLabel: Label
});
settings.json
"ga": {
"id": "UA-75464623-1",
"create": {
"cookieDomain": "dev.goodatlas.com",
"cookieName": "my_ga_cookie",
"cookieExpires": 3600
}
}
Cordova Settings for mobile in mobile-config.js
App.accessRule('*.google-analytics.com/*');
Even on Google Tag Assistant it shows me the data but no display on Google Analytics Real Time or on event Behavior
Can any body tell me what i am doing wrong here.....
I already spent too much time on this