Senry
Senry

Reputation: 260

How does crashlytics manage to upload crash-log even the crash happens in applicationDidFinishLaunching?

As $title, just wondering how they do this. This is what they say in their webpage 'Is there a quick way to force a crash?' http://support.crashlytics.com/knowledgebase/articles/92522-is-there-a-quick-way-to-force-a-crash-

And I followed this, successfully got the crash-log in applicationDidFinishLaunching:.

Upvotes: 0

Views: 248

Answers (1)

dfinki
dfinki

Reputation: 342

They only upload it, once the application is restarted.

They gather information before the crash, and send the crash log after a restart.

That is how I understood it.

See the answer from @marcr here: Offline crash reporting in Crashlytics

Upvotes: 1

Related Questions