Capturing Launch Crashes
Learn how to capture launch crashes in your iOS app with Luciq. Detect and report crashes that occur during app startup to improve overall app stability.
Overview
How It Works
Enabling the Feature
// With default timeout of 2000ms
CrashReporting.enableSendingLaunchCrashesSynchronously()
// OR with a custom timeout
CrashReporting.enableSendingLaunchCrashesSynchronously(withTimeout: 3000)// With default timeout of 2000ms
[LCQCrashReporting enableSendingLaunchCrashesSynchronously];
// OR with a custom timeout
[LCQCrashReporting enableSendingLaunchCrashesSynchronouslyWithTimeout:3000];Configuration
Limitations & Behavior
Last updated