I'm trying to add more data to my Google Analytics report regarding the use of my Android app.
I started using custom dimensions since yesterday and didn't get any results yet and I want to make sure I'm doing it right.
I want to tie a page view with additional information to be sent with it, and that's why I'm using custom dimensions. In the onCreate method of a specific activity I'm doing this -
Tracker tracker = EasyTracker.getTracker();
tracker.setCustomDimension(1, 128));
tracker.setCustomDimension(2, 2));
tracker.setCustomDimension(3, 45));
EasyTracker.getTracker().trackView();
I've set my custom report to work by the Screen Views metric, and by one of the dimension Id's from above.
Will all of this data be sent along with the trackView command? Because I still can't see any data from yesterday.
Thanks!