Questions tagged [plcrashreporter]
58 questions
15
votes
2 answers
Unknown crash reason (with CrashReport attached) SIGTRAP. AFNetworking?
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…

stk
- 6,311
- 11
- 42
- 58
12
votes
2 answers
Atos does not symbolicate system frameworks/libraries properly
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…

George Taskos
- 8,324
- 18
- 82
- 147
9
votes
2 answers
PLCrashReporter - How to convert .plcrash to .crash directly from Xcode itself and save it locally
I am currently working with PLCrashReporter and need some help with converting the plcrash directly to .crash file instead of using the plcrashutil.
What i currently do is -
I simulate a crash and it creates a myapp.plcrash file.
Once that is…

vivianaranha
- 2,781
- 6
- 33
- 47
9
votes
2 answers
PLCrashReporter : Creating a human readable stacktrace
I just downloaded compiled and added PLCrashReporter to my app. I've tested it and it works fine. The sample code from the project documentation works fine.
Now, I'd like to generate a stacktrace such that I can see where exactly the app crashed.…

toom
- 12,864
- 27
- 89
- 128
8
votes
3 answers
PLCrashReporter in XCode 4 - won't compile in Simulator
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…

Mark Struzinski
- 32,945
- 35
- 107
- 137
6
votes
2 answers
PLCrashReporter not working
I had integrated PLCrashReporter framework with help this link. It running fine. But its not working. Not writing crash_log files.
I Used following code for forcefully crash my application. And I also attached my app.
NSMutableArray…

mandeep-dhiman
- 2,505
- 2
- 21
- 31
6
votes
1 answer
How to add PLCrashReporter in my app?
I want to implement the in-app crash log creation and get it from the user once the app was crashed. So, I looked about PLCrashReport and tried to add in my app. There are so many links I found to download this framework. Like Google code, Github.
I…

Confused
- 3,846
- 7
- 45
- 72
6
votes
2 answers
PLCrashReporter - How to symbolicate crash data in-process?
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…

ilker Acar
- 401
- 1
- 5
- 11
5
votes
1 answer
what's the disadvatage of callStackSymbols
In the article Reliable Crash Reporting,Landon Fuller said it's better not to use [NSThread callStackSymbols],but can i use [exception callStackSymbols] when i want to get the full symbolic call stack and send it to my server?

blankyao
- 76
- 7
5
votes
1 answer
Can't compile plcrashreporter in Xcode 4
I can use the prebuilt framework provided on the plcrashreporter project page when compiling for the device, but not for the simulator. I have the same problem described here.
I assume the prebuilt framework does not support the simulator's…

titaniumdecoy
- 18,900
- 17
- 96
- 133
5
votes
3 answers
Privacy Problems with MFMailComposeViewController and iOS 10 only
Rebuilding an already published app with Xcode 8.0 which uses PLCrashReporter, AWS Cognito/SNS, and Google analytics frameworks.
Seeing that on iOS 10.x devices only, the mail compose vc is no longer being presented during running my tests…

drshock
- 2,096
- 2
- 15
- 30
4
votes
0 answers
Some mangled Swift symbols can't be de-mangled
I'm trying to de-mangle mangled Swift symbols with swift-demangle. Some symbols are de-mangled just fine, but some others can't be de-mangled at all no matter what verison of Swift I'm using. Example: I've tried to de-mangle…

Marwan Tanager
- 359
- 3
- 8
4
votes
0 answers
Symbolication / 'atos' works on one machine but not on another
I am trying to symbolicate iOS-crashlogs. I'm running QuincyKit as a server and PLCrashReporter as client-reporting tool.
Now whats really confusing is that the symbolication is working on my local machine but not on our server, which has a cronjob…

TMob
- 1,278
- 1
- 13
- 33
3
votes
0 answers
Swift Unit Tests PLCrashReporter.h file not found
I'm using (linked) PLCrashReporter.framework in my main swift target, with the following in my bridging header:
#import "PLCrashReporter.h"
#import "PLCrashReport.h"
#import "PLCrashReportTextFormatter.h"
and the following Header Search Paths:…

Albert Bori
- 9,832
- 10
- 51
- 78
3
votes
5 answers
Xcode 7 'CrashReporter does not contain bitcode' linker error
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…

Fabrizio Bartolomucci
- 4,948
- 8
- 43
- 75