HockeyApp for crash reporting
In this section, we will dive in deep with the crash reporting system of HockeyApp. HockeyApp has a very robust crash reporting system; we will take a step-by-step look at integrating it with our app.
Getting ready
It is a prerequisite to read and understand the previous section. We will be starting from where we left off in the previous section.
How to do it...
Perform the following steps in order to learn about the integration of crash reporting system in our apps:
- We already integrated the HockeyApp SDK in our app in the previous section. HockeyApp provides us with the
BITCrashManager
class to support an efficient crash reporting system. - By default, crash reporting is enabled in HockeyApp, which will send the crashes the next time the app is launched.
- If you need to disable HockeyApp crash reporting, you can add the following code to
applicationDidFinishLoading
:[[BITHockeyManager sharedHockeyManager] configureWithIdentifier:@"APP_IDENTIFIER"]; [[BITHockeyManager...