Does Google Analytics SDK 2.0 for iOS symbolicate

2019-06-21 13:32发布

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 
  //...
}

1条回答
手持菜刀,她持情操
2楼-- · 2019-06-21 13:47

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.

查看更多
登录 后发表回答