plcrashreporter

PLCrashReporter - How to symbolicate crash data in-process?

ぃ、小莉子 提交于 2020-01-03 14:26:20
问题 Is there a way to symbolicate the crash reports after we get the crash data? Currently, this is what I'm doing in handleCrashReport method; PLCrashReportTextFormat textFormat = PLCrashReportTextFormatiOS; /* Decode data */ PLCrashReport *crashLog = [[PLCrashReport alloc] initWithData: data error: &error]; if (crashLog == nil) { NSLog(@"Could not decode crash file :%@", [[error localizedDescription] UTF8String]); } else { NSString* report = [PLCrashReportTextFormatter stringValueForCrashReport

PLCrashReporter in XCode 4 - won't compile in Simulator

余生颓废 提交于 2019-12-29 05:26:25
问题 I must be doing something totally stupid here, but I can't get the PLCrashReporter framework included in my project. Here are the steps I took to get the framework: Downloaded the .dmg file from the official project site on google code Copied the CrashReporter.framework folder to the root directory of my project Added the framework by going to my project, selecting the target, going to the Build Phases tab, opening the Link Binary With Libraries section, clicking the plus sign, and adding the

PLCrashReporter header implementation?

a 夏天 提交于 2019-12-13 02:56:33
问题 I need to implement the PLCrashReporter to my application, i have added framework and the code to use it, but i need add header files. I am not sure what to add as header files. Could you please help me? 回答1: #import "CrashReporter/CrashReporter.h" Would be the right answer, if all is right configured. 来源: https://stackoverflow.com/questions/20540273/plcrashreporter-header-implementation

Unknown crash reason (with CrashReport attached) SIGTRAP. AFNetworking?

烂漫一生 提交于 2019-12-09 08:09:08
问题 I keep getting these crashes in my app that´s in the AppStore. The CrashReport always looks like this: Incident Identifier: 986486D7-F013-4102-B9E3-84F923223914 CrashReporter Key: [TODO] Hardware Model: iPhone4,1 Process: MyApp [57885] Path: /Users/USER/MyApp.app/MyApp Identifier: de.myapp.iphone Version: 12475 Code Type: ARM Parent Process: launchd [1] Date/Time: 2012-12-20 15:48:53 +0000 OS Version: iPhone OS 6.0.1 (10A523) Report Version: 104 Exception Type: SIGTRAP Exception Codes: #0 at

QuincyKit/PLCrashReporter: provide description *before* the crash

百般思念 提交于 2019-11-30 09:07:11
问题 I'm using QuincyKit, which runs on top of PLCrashReporter, to discover production crashes in my iOS app, and to obtain logs. Sometimes, it'd tremendously help me debug if I had some variables from several call stack levels above the crash point. Like, what record ID did it crash on, if the record processing code is many levels of nesting deep. The question is - is there a way to provide some kind of context string that gets inserted into a crash log as description at generation time? I'd set

QuincyKit/PLCrashReporter: provide description *before* the crash

时光总嘲笑我的痴心妄想 提交于 2019-11-29 12:02:53
I'm using QuincyKit, which runs on top of PLCrashReporter, to discover production crashes in my iOS app, and to obtain logs. Sometimes, it'd tremendously help me debug if I had some variables from several call stack levels above the crash point. Like, what record ID did it crash on, if the record processing code is many levels of nesting deep. The question is - is there a way to provide some kind of context string that gets inserted into a crash log as description at generation time? I'd set it upon entry into a call stack for a record, I'd clear it upon exit. Better if it's non-persistent (i.

Atos does not symbolicate system frameworks/libraries properly

你离开我真会死。 提交于 2019-11-28 12:04:56
The problem is that when symbolicating the stacktrace addresses reported by PLCrashReporter doesn't return the actual system frameworks/libraries symbolicated line. My application line is though showing the correct offending line symbolicated. Some configuration. I have on my OSX 10.9.5 installed the Xcode 5.1.1 and Xcode 6.0.1. When working with the Xcode 5.1.1 and examine the device log I can see the crashes although no symbolication can take place in the crash report. Using Xcode 6.0.1 crashing my app and examine the device log I can see the report symbolicated properly. Atos in any case

Xcode 7 'CrashReporter does not contain bitcode' linker error

人盡茶涼 提交于 2019-11-28 09:02:13
问题 I am directly linking PLCrashReporter in my iOS app without using any external tool and now when I try to compile it on Xcode 7 I get link error: ld: '.../CrashReporter.framework/CrashReporter(libCrashReporter-iphoneos.a-armv7-master.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture armv7 Where do I get the updated framework or the sources to

Atos does not symbolicate system frameworks/libraries properly

风流意气都作罢 提交于 2019-11-27 06:49:42
问题 The problem is that when symbolicating the stacktrace addresses reported by PLCrashReporter doesn't return the actual system frameworks/libraries symbolicated line. My application line is though showing the correct offending line symbolicated. Some configuration. I have on my OSX 10.9.5 installed the Xcode 5.1.1 and Xcode 6.0.1. When working with the Xcode 5.1.1 and examine the device log I can see the crashes although no symbolication can take place in the crash report. Using Xcode 6.0.1