Vini.g.fer
Vini.g.fer

Reputation: 11909

Android: store crash data when offline

I'm looking for something like ACRA (Automated Crash Reporting for Android) https://github.com/ACRA/acra but it has to be able to store data, and send it once the user goes online.

Already read through suggestions on

How do I obtain crash-data from my Android application?

but none of these says something about offline solutions. Anybody knows a solution that works offline and that I could use with my AWS account or a linux domestic server (raspberry pi)?

Upvotes: 1

Views: 944

Answers (1)

Jared Rummler
Jared Rummler

Reputation: 38121

You should use Crashlytics

Marc from Crashlytics here. If the app crashes without an active network connection, the report will still be caught! We always send crash reports on launch when there's an active connection. If that fails, we'll queue it to send later. :)

https://stackoverflow.com/a/18618098/1048340

Upvotes: 3

Related Questions