我已经在我的应用中完成了以下代码。

            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个或更多设备上安装了我的应用程序,但我现在看不到当前的 Activity 用户。它总是显示0。我该如何解决这个问题。

最佳答案

我已经解决了问题。我刚刚在我的应用程序的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;
}

10-04 13:18