Does Google Analytics SDK 2.0 for iOS symbolicate crash reports?

醉酒当歌 提交于 2019-12-10 14:55:40

问题


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:


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.



来源:https://stackoverflow.com/questions/14580889/does-google-analytics-sdk-2-0-for-ios-symbolicate-crash-reports

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!