4

I have developed an app and want to make sure that whenever an unexpected crash occurs, the user is able to send a crash report.

From Android 2.2 onward I read that Android has something build in for this. However, in my case, the application crashes in one special situation, but only the "Force close" button is shown.

The button is not shown in the app downloaded from the Market as well as when I install it directly on my telephone.

Must I perform some programmatic effort to achieve this?

hatemp
  • 61
  • 1
  • 7
  • No coding will help.I think you have to enable some feature in your android market developer account.so that users can submit the crash reports. – Ashwin N Bhanushali Oct 14 '11 at 08:11
  • Any luck on this? I am having the same issue. – eidylon Nov 19 '12 at 16:33
  • possible duplicate of [How to get crash dialog with report button](http://stackoverflow.com/questions/11552963/how-to-get-crash-dialog-with-report-button) – rds Jul 01 '15 at 09:54

2 Answers2

0

You can add Crash Report SDK in your project. If an unexpected crash occurs, it will be reported to the crashlog.org platform. You can view the crash log on this platform, where offers Stack traces, Memory, Storage, Thread and Process information for debugging.

0

Crash report options are given to users of Android >= 2.2. As a developer you don't need to do anything with your code just monitor your developer account for crash/freeze reports.

See this blog

D-Dᴙum
  • 7,689
  • 8
  • 58
  • 97