Android crash report button not showing

I developed the application and want to make sure that whenever an unexpected failure occurs, the user can send a crash report.

Starting with Android 2.2, I read that Android has something for it. However, in my case, the application crashes in one special situation, but only the “Close Strength” button is displayed.

The button does not appear in the application downloaded from the market, and also when I install it directly on my phone.

Do I have to carry out some programmatic efforts to achieve this?

+4
source share
2 answers

Failure report options are provided to Android> = 2.2 users. As a developer, you don’t have to do anything with your code, just control your developer account for crash / freeze reports.

Watch this blog

0
source

You can add the Crash Report SDK to your project. If an unexpected failure occurs, it will be sent to the crashlog.org platform. You can view the crash log on this platform, where stack traces, memory, storage, thread, and process information are offered for debugging.

0
source

All Articles