I have followed the instructions of Parse to implement crash reporting. I was already using Parse SDK and updated it to add crash reporting feature.
I have added the shell script as well. Here is my code:
[ParseCrashReporting enable];
//Parse
[Parse setApplicationId:PARSE_APPLICATION_KEY clientKey:PARSE_CLIENT_KEY];
[PFAnalytics trackAppOpenedWithLaunchOptions:launchOptions];
[self performSelector:@selector(crash) withObject:nil afterDelay:5.0];
- (void)crash {
[NSException raise:NSGenericException format:@"Everything is ok. This is just a test crash."];
}
I am still unable to get crash reports in parse.