Setting Crash SDK
1. Detailed setting
Setting the collection server
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. Sending custom errors
3. Custom Web Crash
Create Custom Errors
Custom Error Messages
Error type
Description
4. dSYM Settings
Last updated