I've seen a few posts around that previous versions <3.03 doesn't seem to work and I've tried all kinds of things now but this still doesn't appear to be working - nothing appears in the Behaviour/App Speed section of my GA
I'm using the iOS 3.03 GA SDK. Here is my code:
- (void)onLoad:(NSTimeInterval *)loadTime {
NSNumber *n = [NSNumber numberWithDouble:*loadTime*1000];
NSLog(@"Time sent = %f ms", [n floatValue]);
id tracker = [[GAI sharedInstance] defaultTracker];
[tracker send:[[GAIDictionaryBuilder createTimingWithCategory:@"resources" interval:n name:@"candidatesLoadTime" label:@"loadTime"] build]];
}
Thanks in advance for any help/advice