简体   繁体   English

适用于iOS的Google Analytics(分析)SDK 2.0是否表示崩溃报告?

[英]Does Google Analytics SDK 2.0 for iOS symbolicate crash reports?

There is no mention of this on their website, Google Analytics SDK 他们的网站Google Analytics(分析)SDK上没有提及此内容

I am talking about the automatic uncaught exception handling: 我正在谈论自动未捕获的异常处理:

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

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). 从理论上讲,这只有在您不从应用程序二进制文件中删除符号,而导致二进制文件更大(最大30-50%)时才有可能。 Or if you upload the dSYM, which would allow you to get line numbers too. 或者,如果您上载dSYM,则也可以获取行号。

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. 由于您无法上传dSYM文件,并且文档中似乎没有要求将符号保留在应用程序二进制文件中,因此它们不会符号表示未捕获的异常导致的崩溃。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM