我在iOS中使用airbrake,但我的付费空中制动帐户中没有收到任何崩溃通知。我已经在airbrake iOS git中解释了这里的实现 https://github.com/airbrake/airbrake-ios
这是Objective-c中的代码我在app delegate中编写如下
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
[ABNotifier startNotifierWithAPIKey:@"xxxx"
projectID:@"xxxxxx"
environmentName:ABNotifierAutomaticEnvironment
useSSL:YES // only if your account supports it
delegate:(id)self];
return YES;
}
以及应用程序崩溃的ViewController。代码是
- (IBAction)crashBttnAction:(id)sender {
NSMutableArray *arr=[[NSMutableArray alloc]init];
[arr objectAtIndex:5];
}
该应用程序强行崩溃,但我的airbrake付费帐户中没有收到任何通知。这是我的测试github项目的链接
答案 0 :(得分:0)
您的代码应该有效。 我下载了您的代码并使用airbrake密钥,项目ID和应用程序包ID尝试了我自己的帐户。 所以它可能与项目设置有关