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

Is the any sort of repository for OS/system dSYM files for every version of iOS, macOS, etc.?

To fully symbolicate Apple crash files it would be nice to have all the dSYM files for all the modules (binary images) mentioned in the crash stack traces. Where do people normally get dSYM files for OS/system components of iOS, macOS, etc.? Is…
AKornich
  • 682
  • 5
  • 16
0
votes
1 answer

Deciphering a symbolicated crash log from Apple Review

I have an App that is repeatedly being rejected from Apple App Review for this reason: Guideline 2.1 - Performance - App Completeness We were still unable to review your app as it still crashed on launch when reviewed on iPad and iPhone running…
cit
  • 2,465
  • 5
  • 28
  • 36
0
votes
0 answers

Unable to symbolicate Xamarin Forms iOS crashes - 'No symbolic information found'

After studying a large number of posts on this topic I'm still unable to symbolicate my Xamarin Forms iOS crashes from TestFlight. In the final step below, I get: Num stacks found:17 0 binary images remain after pruning 0 binary images were found No…
BillF
  • 1,034
  • 3
  • 13
  • 28
0
votes
2 answers

Symbolicated iOS crash report from Apple review still not readable

I got a crash report from Apple and symbolicated it following this document, but I still didn't understand the report. First, I tried below "XCode approach" to symbolicate the report: Connect an iOS device to your Mac Choose "Devices" from the…
Van Zhu
  • 1
  • 2
0
votes
1 answer

Symbolicate exception of UWP app built with .NET Native

In the logs of a sideloaded Windows Store App, I find the following exception: Arg_ArgumentException --> System.ArgumentException: Arg_ArgumentException at SharedLibrary!+0x3a13ad at my-app!+0xf29d82h at…
Gene
  • 4,192
  • 5
  • 32
  • 56
0
votes
1 answer

how Symbolicate a crash file using xcarchive

I've found this good tutorial: https://www.apteligent.com/technical-resource/symbolicating-an-ios-crash-report/ After read it I understand that I have to use the crash file and the xcarchive/pathtodsymfile to Symbolicate the crash file because my…
Ricardo
  • 7,921
  • 14
  • 64
  • 111
0
votes
1 answer

Unable to symbolicate crash reports

I submitted a new version of my app to AppStore and it got rejected due to some crashes that I never experienced while testing the app. Unfortunately I can't seem to be able to reproduce the issue so all I have to analyze the 2 unsymbolicated crash…
daydr3am3r
  • 920
  • 4
  • 12
  • 31
0
votes
2 answers

AIR iOS dysm/symbolicate file

Submitted an app to the iOS store yesterday and they threw me back some crash logs that happened on launch. All the shiny numbers in the log apparently mean something, but I can't find out how to translate them. According to old forum posts, I need…
sfxworks
  • 1,031
  • 8
  • 27
0
votes
1 answer

Xcode cannot symbolicate my crash logs even though I have correct .dSYM file

I have been observing this that when ever my app crashes i get the crash log and try to symbolicate it but following happen When I use xcode to symbolicate, it never symbolicates the addresses of the crash When I use atos command specified…
0
votes
0 answers

Apple crash log with multiple dSYMs

Briefly: There are 30 dSYMs I get from iTunes Connect. Which one should I use (they are all named like UUIDs and neither has a human-readable name). All the methods of symbolication I've found require just one (MyApp.app.dSYM), so which one is…
EBDOKUM
  • 1,696
  • 3
  • 15
  • 33
0
votes
1 answer

Symbolicating crash report

I have all dSYM files, crash file and .app file in the same folder, using this command it symbolicates the crash report: symbolicatecrash myCrash.crash > SymbolicatedM.crash But the first few lines still show hex address: Exception Type: …
Maysam
  • 7,246
  • 13
  • 68
  • 106
0
votes
0 answers

Traditional Android force close dialog does not show up on a crash in Xamarin

Newbie to Xamarin.Android and Xamarin in general. So I have this huge legacy application that I am managing. I have integrated HockeyApp crash reporting too recently to log user crashes. But from time to time, I am seeing this odd behaviours where…
Dibzmania
  • 1,934
  • 1
  • 15
  • 32
0
votes
2 answers

How can I symbolicate without archive but have .dsym files?

I have to symbolicate a crash report given to me, however I didn't create the initial archive that was sent to Apple. I do, however, have the .dsym files. Is there a way I can symbolicate the crash file? Thanks.
Aaron Bratcher
  • 6,051
  • 2
  • 39
  • 70
0
votes
1 answer

Stacktrace is no longer symbolicated

I do my own error handling by catching any exceptions and logging them manually. I use NSSetUncaughtExceptionHandler(&myExceptionHandler); and log the stack trace using [NSException callStackSymbols]. Up until recently my logs contained the…
dm shively
  • 107
  • 1
  • 7
0
votes
1 answer

IOS symbolication formula

I have read in various sites that while manually symbolicating an ios Crash report, we can get the symbol address using: symbol address = slide address + stack address - load address But how do we get this? These are the sites which mentions the…
riddler0212
  • 95
  • 1
  • 1
  • 8