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
4
votes
0 answers

The crash file received after app review from Apple is in JSON format and cannot be analyzed with symbolicatecrash

After requesting an app review from Apple, the app was rejected due to a crash. At this time, I received the crash log in JSON format as below. { "app_name":"Runner", "timestamp":"2022-11-11 15:18:06.00…
Raymond
  • 473
  • 3
  • 18
4
votes
2 answers

Symbolicate iOS Crashlog of Development Version

I've compiled and run an app on the iPad (Build Configuration is Debug). Then I've quit the app and disconnected the iPad. Then I started the app on the iPad again, and somewhen a crash happened. In the crashlog, though, are only hex addresses for…
fabb
  • 11,660
  • 13
  • 67
  • 111
4
votes
1 answer

Cannot symbolicate native Android Flutter crashes

From the release of my Android Flutter app, I've been struggling with native unsymbolicated crash logs in my Fabric/Firebase Crashlytics dashboard. These are not random crashes and not specific to any OS or Device. Also this is not a startup crash,…
4
votes
1 answer

I want to change path of ~/Library/Developer/Xcode/iOS DeviceSupport to my External Drive

When we connect any iOS device to MAC OS X, by default Xcode copy device info into ~/Library/Developer/Xcode/iOS DeviceSupport path. I want that files for symbolicate crash log. But my MAC derive is almost full only 1 GB avaialble. So I want to move…
Sunil M.
  • 554
  • 5
  • 17
4
votes
2 answers

Meaning for backtrace addresses in iOS crash log?

Backtrace in crash log looks like this: 6 locationd 0x00000001000bb24c 0x10006c000 + 324172 Seems like 0x00000001000bb24c is the function address, but what does the fourth column mean? Seems like first part in the fourth…
Karl
  • 665
  • 4
  • 19
4
votes
0 answers

App crash on Apple review - I can't reproduce it

I tested app on 10 different iOS devices, with and without Internet connection, with direct build and with Testflight build - app works. I tried different language settings, different regional settings - it works. When I submit it for review it gets…
gvuksic
  • 2,983
  • 3
  • 32
  • 37
4
votes
1 answer

Correct setup so Xcode generates properly symbolicated logs for iOS devices

I'm performing testing on several iOS apps on a range of devices and iOS versions (iPhone, Touch, iPad, iOS 3.1.3, 4.0.2, 4.1). I have Xcode v3.2.4 installed, primarily so I can get logs and console output to attach to bugs. We recently noticed that…
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
4
votes
1 answer

How to symbolicate a Hang report for OS X apps?

One of my apps (release version) was unresponsive, so I had to force-quit it. OS X presented a Hang report (no crash report), which I copied to a *.crash file. I'm aware of I can use services such as HockeyApp or atos directly to symbolicate Crash…
Raffael
  • 1,119
  • 10
  • 20
4
votes
0 answers

Symbolicate [NSThread callStackSymbols] and [NSThread callStackReturnAddresses]

I would like to symbolicate my [NSThread callStackSymbols] to my method names. My main problem is, that i don't know how to calculate the memory address from the log i got here. 0 MY_APPLICATION 0x000f1ca3 MY_APPLICATION +…
mariusLAN
  • 1,195
  • 1
  • 12
  • 26
4
votes
2 answers

Symbolicate iPhone app crash

Symbolicate iPhone app crash - Map hexadecimal addresses to valid function namespace (call stack) Listing requirements: Symbolicating crashes Using Xcode Organizer Using external services Using .crash file and .dSYM file Sources: iTunesConnect…
Venkatarao N
  • 245
  • 3
  • 14
3
votes
2 answers

MetricKit MXCallStackTree symbolication

I am trying to implement MetricKit so later I could analyze MXCrashDiagnostic and MXHangDiagnostic reports. However when I am triggering a test crash, Here is an example of what I get for MXCrashDiagnostic: ente "timeStampEnd": "2021-06-07…
czm
  • 31
  • 2
3
votes
0 answers

How can I generate a symbols file for my Electron application code?

I am using the Electron symbols file to symbolicate my stack trace, and everything is working fine. Except these symbols don't work on my application code. How can I generate a symbols file for my actual application code? I am using Electron…
Eric Froese
  • 86
  • 1
  • 3
3
votes
1 answer

Reducing size of dSYM files for symbolication

We are looking for ways to reduce the size of dSYM files from Apple platforms. We need dSYM files just for symbolicating stack traces of crashes and in Crashlytics blog I read this: These mappings actually hold much more than needed just…
pembeci
  • 696
  • 4
  • 9
3
votes
0 answers

Xcode 9.4 addresses not desymbolicated

TL;DR: I did include symbols when uploading to iTunes Connect. Crash log in Organizer shows hex addresses for my code. Xcode 9.4. (I know this is an very FAQ, but the discussions I've found address command line tools, obsolete versions of Xcode, or…
Andrew Duncan
  • 3,553
  • 4
  • 28
  • 55