Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Google Analytics SDK 2.0 for iOS symbolicate crash reports?

There is no mention of this on their website, Google Analytics SDK

I am talking about the automatic uncaught exception handling:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  [GAI sharedInstance].trackUncaughtExceptions = YES; // Enable 
  //...
}
like image 965
lmirosevic Avatar asked Jan 29 '13 10:01

lmirosevic


1 Answers

In theory this would only be possible if either you don't strip symbols from your app binary, resulting in larger binary files (up to 30-50% bigger). Or if you upload the dSYM, which would allow you to get line numbers too.

Since you can't upload dSYM files, and the documentation doesn't seem you to require leaving the symbols in the app binary, they won't symbolicate crashes caused by uncaught exceptions.

like image 121
Kerni Avatar answered Nov 10 '22 21:11

Kerni