Martin
Martin

Reputation: 4765

When does Crashlytics send the log on iOS?

Immediately after the crash or at restart only? I'm asking it because if the user uninstalls the app due to a crash, it will never turn out then in case, Crashlytics sends the log just after the running the app again.

Upvotes: 1

Views: 263

Answers (2)

Bhumit Mehta
Bhumit Mehta

Reputation: 16318

Vignesh is correct. If you want any source confirming it , i found this from Crashlytics site

Following are steps mentioned there to get a test crash report.

  • Launch simulator
  • Press stop
  • Launch your app and force a crash
  • Relaunch the app from simulator
  • See the crash report in the web dashboard

Here 4th step confirms that it sends report only on next launch.

Hope this helps.

Upvotes: 2

Vignesh
Vignesh

Reputation: 10251

If your app is crashed nothing can run from your crashed app . Hence it has to send on restart only.

Upvotes: 3

Related Questions