I’ve recently integrated the latest release of the Google Analytics SDK for iOS.
I’m tracking screen views and trying to send custom variables along.
The only way I figured out I could use to do that is to use setCustom before sending the screen tracking request, like:
[[GAI sharedInstance].defaultTracker setCustom:1 dimension:@"dimension"];
[[GAI sharedInstance].defaultTracker trackView:@"To screen one"];
Using the debug mode, I managed to see the custom dimension sent over with the screen view request:
Body:
cd2&ul=de&an=MyApp&_v=asldkajsdlkj3l12kj&cd1=dimension&t=appview&sd=24-bit&cd=To+screen+one&sr=320×480&tid=UA-XXXXXXX-X&v=1&av=alpha+6&qt=16921&z=1029348723498274
under the parameter “cd1”.
The problem is: I can’t see it anywhere in the dashboard. I’ve got all the screen views reported, but no
custom dimension at all.
Does anyone have a glimpse of what the problem could be?
After asking in the Google Group, a guy named Dave pointed out the following:
After contacting the support, looks like they fixed the problem and now it’s possible to stup the custom dimenstions on the admin panel.