Crash SDK設定
1. 詳細設定
収集サーバー設定
NSString* imqaUrl = @"https://custom-url";
IMQACrashConfiguration* crashConfig = [[IMQACrashConfiguration alloc] initWithApiKey:PROJECT_KEY];
IMQACrashEndpointConfiguration* endpoint = [[IMQACrashEndpointConfiguration alloc] init];
endpoint.notify = [imqaUrl stringByAppendingString:@"/cocoa/crash/send"];
endpoint.sessions = [imqaUrl stringByAppendingString:@"/cocoa/session"];
crashConfig.endpoints = endpoint;
let imqaUrl = "https://custom-url"
let crashConfig = IMQACrashConfiguration("<PROJECT_KEY>")
crashConfig.endpoints = IMQACrashEndpointConfiguration(
notify: imqaUrl + "/cocoa/crash/send",
sessions: imqaUrl + "/cocoa/session")2. カスタムエラー送信
Objective-C設定方法
Swift設定方法
3. Custom Web Crash 発生
カスタムエラーの生成
カスタムエラーメッセージの指定
Error Type
Description
4. dSYM設定
Last updated