Questions tagged [symbolicatecrash]

Use this tag for questions related to symbolicating a crash report/log. Symbolication replaces memory addresses with human-readable function names and line numbers.

Quoting the Developer.Apple page:

Symbolication - resolving backtrace addresses to source code methods and lines.

Usually, is found in questions that are tagged with , and/or , so if you are using this tag, please think about whether you need these tags too.

212 questions
0
votes
1 answer

Reading production crash log in iOS application

I have a crash report from a production iOS app, which was automatically logged into our own server. The crash log is a string combination of [NSException description] and [NSException callStackSymbols], looks as follow: Terminating app due to…
Andree
  • 3,033
  • 6
  • 36
  • 56
0
votes
2 answers

Persistent crash on my iOS App, unable to locate it

I'm searching for 5 days ago about this crash, but I can find why my app crash sometimes. I'm using the Crittercism library to log my crash. The dSYM file is correctly uploaded on the Crittercism website. Here the crash log from Crittercism: 0…
Lapinou
  • 1,467
  • 2
  • 20
  • 39
0
votes
1 answer

iOS crash log: how to make sense of it when the crashing thread has no app frame

Please see the crash log below. The crashing thread 66 and the Last Exception backtrace has no TestApp frame. Can I conclude that the crash was caused by code that was not written by me? Note: the TestApp did not symbolicate even though I have the…
Zsolt
  • 3,648
  • 3
  • 32
  • 47
0
votes
1 answer

What symbolicated crash reporting means in android

i just started using crittercism crash reporting tool for my android app . their web shows some content which is completely beyond my tiny head. like an alert message "To get symbolicated crash reports, upload ProGuard mapping files matching…
Shailendra Singh Rajawat
  • 8,172
  • 3
  • 35
  • 40
0
votes
1 answer

ios - I have the crash code and the .dSYM file, but how to get the place where the crash happened?

I have this symbolicated crash report from Apple: Thread 0: 14 Fundraising 0x0007a3aa 0x79000 + 5034 And I have the binary archived in my organizer archives. But I don't really understand what steps are needed to "decode" that…
Genadinik
  • 18,153
  • 63
  • 185
  • 284
0
votes
1 answer

Unable to symbolicate crash log

I am facing some problem in symbolicating my crash log. I followed all the steps as answered by naveenshan in this thread. But once I execute the line atos -arch armv7 -o 'app name.app'/'app name' 0x0003b508, it just throws me back the address…
user1437241
  • 45
  • 1
  • 5
0
votes
1 answer

iPad app in store crashing, trouble working out TestFlight logs

So I'm getting many crash logs for my app showing up in TestFlight on a live app (iPad 5.0+ only) 2 libsystem_c.dylib 0x332a9e92 _sigtramp + 42 3 UIKit 0x34b97372 + 226... Exception Reason: SIGSEGV Here is all the threads from the TestFlight log... …
user2007315
0
votes
1 answer

iOS std::length_error::~length_error() crash

In my App, I used the C++/Boost lib also. It's weird that all the crash logs are related to the std::length_error(). Can anyone give some clues? Any comment is welcome. 124 Thread 8 Crashed: 125 0 libsystem_kernel.dylib 0x30a70350…
joshualmf
  • 437
  • 4
  • 5
0
votes
1 answer

symbolicatecrash doesn't resolve my app objects

I am able to use symbolicatecrash command to symbolicate the crash log and it all works fine except it only resolves system symbols, but all my app's object remain as memory address.. like the following. It is the same result when I use xcode to…
Twinkiestar
  • 181
  • 5
  • 12
0
votes
1 answer

How to get iOS crash logs when syncing to the cloud

If a user only syncs with iCloud, how can I get their crash logs? I've had them try to sync with their computer, but it doesn't appear to copy them to their computer.
Bryant Harris
  • 728
  • 5
  • 21
0
votes
1 answer

App Crashing Upon Startup for Users, Cannot Replicate Errors

The update for my app went live the other day, with no problems in testing on various devices and operating systems. However, it is crashing for several of my users upon startup. I am fairly new at reading crash logs. Can someone point me in the…
SAHM
  • 4,078
  • 7
  • 41
  • 77
0
votes
2 answers

Does apple support setting up a symbol server to analyze iOS Crash Dumps

Just like MS's symbol server, does apple support setting up a symbol server to analyze iOS Crash Dumps instead of having to symbolicate crash on the compiling machine?
bettermanlu
  • 627
  • 1
  • 9
  • 28
0
votes
1 answer

handling iOS crash report- EXC_CRASH (SIGSEGV)

I've encountered a problem with my app, if I let it running for 24 hours, after returning to it, it crashes. It is a location based app and should work in background for unlimited time. As you can see, the crash occurred in some "native" thread. Is…
0
votes
1 answer

Different crash reports but the same crash?

I have a problem in understanding some things about these two crash reports that I get from Apple: Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x617401fa Crashed Thread: 0 0 app …
0
votes
1 answer

Symbolicate crash logs in xcode 4.3 doesn't work if the app name contains an apostrophe

My app icon name (the name of the app in the springboard) is like: My'App When I see crash logs in the organizer they are not symbolicated. If I delete the ' of the name (like MyApp) then they are symbolicated. Does anybody have the same issue? Is…
1 2 3
14
15