I have implemented 3 user level custom dimensions in Google Analytics iOS for my app in the following manner:
[tracker send:[[[GAIDictionaryBuilder createAppView] set:[DeviceType deviceType] forKey:[GAIFields customDimensionForIndex:1]] build]];
[tracker send:[[[GAIDictionaryBuilder createAppView] set:[[UIDevice currentDevice] systemVersion] forKey:[GAIFields customDimensionForIndex:2]] build]];
[tracker send:[[[GAIDictionaryBuilder createAppView] set:fullVersionUser forKey:[GAIFields customDimensionForIndex:3]] build]];
I've set up the dimensions properly in the control panel and all 3 list as active. I'm just wondering, how do I simply view these dimensions? I've tried generating a custom report and nothing seems to show. Is there anyway to make these dimensions appear in the regular report?