我有包含Google Analytics SDK v1的旧应用程序 ,我将更新我的应用程序以支持 64 位支持。
我已经用 Google Analytics SDK v3.10 替换了Google Analytics SDK v1,(我只更新了 iOS SDK 没有在我的分析工具的其他任何地方更新)
我已经更改了我的 appdelegate 类中的代码,例如
[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)
我的视图控制器 --> 视图确实出现了包含
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]];
我的分析中没有显示任何数据,我已经等了两天。
我创建了一个虚拟测试 Google Analytics 帐户 --> 移动应用程序 --> ios 应用程序,它给了我一个新 ID。
我已经在我的代码中替换了那个新的 id,现在它运行良好,在我的新虚拟测试 Google Analytics 帐户中显示数据,但不在我的旧 Google Analytics 帐户中。
有谁知道是什么导致了这个问题?