Crash 설정
iOS 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")Custom User ID 등록
Option Name
Description

2. 커스텀 에러 보내기
Objective-C 설정 방법
Swift 설정 방법
3. Custom Web Crash 발생

4. 특정 웹 크래시 수집 제한 옵션
Option Name
Type
Default Value
Description

5. dSYM 설정
Last updated