是否可以在IOS模拟器中使用Google Analytics跟踪应用?

时间:2013-11-12 16:02:31

标签: ios google-analytics google-analytics-api

我尝试使用Google Analytics跟踪我的应用,但没有看到它何时以“实时模式”打开。

我正在使用Google Analytics for Mobile Apps iOS SDK v3

Delegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
    // Optional: automatically send uncaught exceptions to Google Analytics.
    [GAI sharedInstance].trackUncaughtExceptions = YES;

    // Optional: set Google Analytics dispatch interval to e.g. 20 seconds.
    [GAI sharedInstance].dispatchInterval = 20;

    // Optional: set Logger to VERBOSE for debug information.
    [[[GAI sharedInstance] logger] setLogLevel:kGAILogLevelVerbose];

    // Initialize tracker.
    [[GAI sharedInstance] trackerWithTrackingId:@"UA-MYTRACKID-HERE"];

    return YES;
}

也许,这在IOS模拟器中是不可能的?

1 个答案:

答案 0 :(得分:1)

Google Analytics也适用于iOS模拟器。只需给它一点时间就可以出现在实时数据中(通常是5-10秒)。模拟器的唯一问题是Google Analytics可能会将iPad模拟器报告为iPhone,但这不是什么大问题。