I've created 2 dimesions in my Analytics. When my user log in my app, I send the dimensions to Google Analytics. I know that have a delay to the dimension appear in report. But it's not appearing.
There's my code:
- (void) signInGoogleAnalytics {
id<GAITracker> tracker = [[GAI sharedInstance] defaultTracker];
// You only need to set User ID on a tracker once. By setting it on the tracker, the ID will be
// sent with all subsequent hits.
[tracker set:kGAIUserId value:self.txtStoreCode.text];
NSString *dimensionUsuarioLogado = [NSString stringWithFormat:@"%@", _txtEmployee.text];
NSString *dimensionLoja = [NSString stringWithFormat:@"%@", _txtStoreCode.text];
[tracker send:[[[GAIDictionaryBuilder createScreenView] set:dimensionUsuarioLogado forKey:[GAIFields customDimensionForIndex:1]] build]];
[tracker send:[[[GAIDictionaryBuilder createScreenView] set:dimensionLoja forKey:[GAIFields customDimensionForIndex:2]] build]];
}
See screenshots https://postimg.org/image/mz3lmcj3t/
https://postimg.org/image/842ts7qqb/
Its possible to look the parameters cd1 and cd2...(custom dimension) but it's not appear in G.A Report.