Returns a boolean value indicating whether the app crashed during the previous execution.
async didCrashPreviously() {// returns boolean valueconst crashlytics = getCrashlytics();const didCrash = await didCrashOnPreviousExecution(crashlytics);}didCrashPreviously(); Copy
async didCrashPreviously() {// returns boolean valueconst crashlytics = getCrashlytics();const didCrash = await didCrashOnPreviousExecution(crashlytics);}didCrashPreviously();
A crashlytics instance.
Promise that resolves to a boolean indicating if the app crashed previously.
Returns a boolean value indicating whether the app crashed during the previous execution.
Example