Add an option to crash a sample app to test crash reporter plugin

Summary: As per the title

Reviewed By: jknoxville

Differential Revision: D14168217

fbshipit-source-id: c138a4d5c3258f094436a2b09fd18130539a866c
This commit is contained in:
Pritesh Nandgaonkar
2019-02-21 10:10:15 -08:00
committed by Facebook Github Bot
parent 5fff501d26
commit c073aad801
2 changed files with 21 additions and 0 deletions

View File

@@ -55,4 +55,9 @@
[self.navigationController pushViewController:communicationDemoViewController animated:true];
}
- (IBAction)tappedCauseCrash:(UIButton *)sender {
NSArray *arr = @[];
[arr objectAtIndex:10];
}
@end