为什么BugSense会剥离崩溃堆栈跟踪符号?

时间:2013-05-29 09:13:30

标签: iphone objective-c bugsense

在运行启用了BugSense的应用程序时,我没有在调试控制台中看到任何崩溃堆栈跟踪日志。我在调试控制台中看到的唯一一件事是“SIGABRT”。我在AppDelegate中启用了Bugsense,并使用代码

启动了FininLaunching
[BugSenseController sharedControllerWithBugSenseAPIKey:kBugsenseApiKey userDictionary:nil sendImmediately:YES];

项目和应用目标构建设置“复制期间剥离调试符号”和“剥离链接产品”设置为“否”

如果我注释掉“[BugSenseController sharedControllerWit ...”行,那么我会在调试控制台中看到完整的崩溃堆栈跟踪。任何想法,我缺少什么构建设置?

1 个答案:

答案 0 :(得分:0)

目标构建设置集中的

复制期间剥离调试符号= YES, 剥离链接产品=是

      - (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {   
              [BugSenseController sharedControllerWithBugSenseAPIKey:@"<Your BugSense API Key>"];

        }

然后检查