domen
domen

Reputation: 1279

Force Close error description

I've released an application to some people for testing. Some of them are reporting that it works fine, while other say that they are getting Force Close error on the first run. How can I get the error description that happens, so I can fix it?

Upvotes: 0

Views: 148

Answers (3)

Ajay S
Ajay S

Reputation: 48602

Look here:

You can try Application Crash Report for Android.

Second most suitable for error logging BugSense. It upload the error message on dashboard immediately.

Third I have example on github to send the error trace on to developer email.

https://github.com/ajaysaini-sgvu/CrashReport

Upvotes: 0

Raghav Sood
Raghav Sood

Reputation: 82563

For now, ask users to install any logcat reading app and send you the stacktrace, if they're running Android 4.0 or below.

In future updates, integrate a library like ACRA that can automatically send you error reports.

Upvotes: 1

Adrian Taylor
Adrian Taylor

Reputation: 4114

Ask a selection of your users to install aLogcat, and to send the logs to you when the problem occurs. After all, assuming they're all suffering from the same problem, you only really need a single user to send you the logs so that you can get a call stack to diagnose it.

Upvotes: 0

Related Questions