Rajesh Kumar
Rajesh Kumar

Reputation: 7048

How to find a crash report from an Android device?

I am developing android application for client. Now client testing my application in various device. While testing, my application is crash at times. Now I need to know when and where the application crash.

How can I get the crash report from the device? Since my client does not have sdk and eclipse to view logcat error report.

Upvotes: 0

Views: 2767

Answers (3)

Instabug is a bug & crash reporting service and it’s just what you’re looking for. It automatically sends a report containing all crash and device details once a crash occurs, plus it only takes a line of code to integrate in your app.


For full disclosure, I work at Instabug. Let me know if I can help.

Upvotes: 2

Luthier
Luthier

Reputation: 1

By adding the Crash Report SDK in the project, You can view the released application crash log, which will help to locate problems.

Here is a demo page

Upvotes: 0

Rajesh
Rajesh

Reputation: 15774

There are mechanisms like ACRA that will let you obtain the crash reports from Android apps.

Upvotes: 3

Related Questions