我在我的应用中完成了以下代码。
id<GAITracker> tracker = [[GAI sharedInstance] trackerWithTrackingId:@"My Track Id"];
[tracker send:[[GAIDictionaryBuilder createEventWithCategory:@"Show User"
action:@"Show user Clicked"
label:nil
value:nil] build]];
我已经在3个或更多设备中安装了我的应用程序,但我看不到现在正在使用的活动用户。它始终显示0。我该如何解决这个问题。
答案 0 :(得分:1)
我已经解决了这个问题。我刚在我的应用程序的AppDelegate.m
文件中添加了以下代码。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[GAI sharedInstance].trackUncaughtExceptions = YES;
[[GAI sharedInstance].logger setLogLevel:kGAILogLevelVerbose];
[GAI sharedInstance].dispatchInterval = 20;
[[GAI sharedInstance]dispatch];
return YES;
}