Are Google Analytics SDK 2.0 for iOS crash reporting symbols?

This is not stated on their website, the Google Analytics SDK

I am talking about automatic handling of uncaught exceptions:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  [GAI sharedInstance].trackUncaughtExceptions = YES; // Enable 
  //...
}
+5
source share
1 answer

In theory, this would be possible only if you did not separate the characters from your binary application, resulting in large binary files (30-50% more). Or if you download dSYM, which allows you to also get line numbers.

Since you cannot upload dSYM files, and there is no need to leave characters in the binary application in the documentation, they will not symbolize failures caused by uncaught exceptions.

+5
source

All Articles