Search code examples
iosobjective-chockeyapp

How to read crash report in HockeyApp


I'm testing the framework HockeyApps for testing apps with iOS, it seems I added successfully my app.

I added a code which is triggered after the user touches a button, the code is very simple:

- (IBAction)didClickAuthenticateOptions:(id)sender {

    NSString *s = @"x";
    id obj = s;
    NSArray *arr = obj;

    NSLog(@"the array has the following lenght:");
    NSLog(@"%lu", (unsigned long)[arr count]);
}

this code will terminate with a crash on my app.

I installed and executed my app normally on my iPhone, and the crash report was sent to my site:

crash report page

but when I opened the crash report, I expected to get information about the file, method, line of code that provoked the crash

enter image description here

when I clicked on "view raw log" I got all this:

raw log

How to find the method, line and code that provoked the crash in all that log???

thanks in advance for the support


Solution

  • This is because you did not yet upload the correct dSYM files to HockeyApp. They are needed to translate the cryptic memory addresses back to readable filenames, method names, and line numbers.

    There some more info on how to find the correct dSYM here.