user5886755
user5886755

Reputation:

How to get/view crash reports of iOS app

Hello friends my app is crashing multiple times. In iTunes-store app-analytics it shows no.of crashes but how can I view or get crash report of that particular app.

I'm using Xcode 7.3 for development.

I have seen various answer's about this but not able understand properly.

I just need to check, why my app is getting crash, for that purpose I need to see crash report. Or if there is any other way to see it?

Can we check in source-code, actually at what line app is getting cash.

Upvotes: 5

Views: 4268

Answers (3)

Matt
Matt

Reputation: 1761

Open Xcode

Go to Window -> Organizer

  1. You will be presented a window with two options on title bar "Archives" and "Crashes".
  2. On left pan select your app from the list given.
  3. And choose "Crashes"
  4. You can view crash reports of all the version submitted to App Store.
  5. Click on "Open in Project" from right hand side panel to go to exact line of the issue in your project.

Note: Crash reports are retrieved only when the user accepts to send diagnostics back to Apple.

Edit For best third party crash report tools https://savvyapps.com/blog/review-5-best-ios-crash-reporting-tools-infographic

Upvotes: 9

Parth Adroja
Parth Adroja

Reputation: 13514

For native you can check the crashes in Xcode -> Window -> Organizer.

You can use Crashlytics. Check details here for Crashlytics. Further, you can use Fabric application in the mobile to get notifications of crashes and will also send mail for the same.

Upvotes: 1

Poles
Poles

Reputation: 3682

Use Crashlytics from twitter. It will give you detailed crash report.

Upvotes: 3

Related Questions