64-bit support for Google Analytics SDK (v 3.10) on iOS

I have an old Google Analytics SDK v1 containg application , I am going to update my application to support 64-bit support.

I have replaced the Google Analytics SDK v1 with the Google Analytics SDK v3. 10 , (I updated the SDK for iOS, but not somewhere else in my analytic tool)

I changed the code in the appdelegate class like

[GAI sharedInstance].trackUncaughtExceptions = YES;
[GAI sharedInstance].dispatchInterval = 20;
[[[GAI sharedInstance] logger] setLogLevel:kGAILogLevelVerbose];
id tracker = [[GAI sharedInstance] trackerWithTrackingId:@"XX-xxxxxx-xx"];  (ID IS OLD ONE)

and my View → view controller containing

id tracker = [[GAI sharedInstance] defaultTracker];
[tracker send:[[GAIDictionaryBuilder createEventWithCategory:  [NSString stringWithFormat:@"Class Name"] action:[NSString stringWithFormat:@"Class Name"] label:[NSString stringWithFormat:@"Class Name"] value:nil] build]]; 

It does not show any data in my Analytics, I waited two days.

I created one Google Analytics Dummy Test -> mobile app -> ios app, it gave me a new id.

, , Dummy- Google Analytics, Google Analytics.

- , ?

+4

All Articles