0

I recently started to implement Google Analytics V2 beta in my app and i would like to know how can i track when it is launched. My code is:

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [GAI sharedInstance].debug = YES;
    [GAI sharedInstance].dispatchInterval = 120;
    [GAI sharedInstance].trackUncaughtExceptions = YES;
    self.tracker = [[GAI sharedInstance] trackerWithTrackingId:@"ID"];

    self.tracker.sessionStart = YES;

    return YES;
}

I don't want to track it as an event. How can i do it ?

j0k
  • 22,600
  • 28
  • 79
  • 90
Macaret
  • 797
  • 9
  • 33

1 Answers1

0

Maybe you could try this:

[self.tracker trackView:@"App started"];
Vili
  • 1,599
  • 15
  • 40