Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reporting Android Application Crashes

Tags:

android

I've noticed a couple of Android applications that seem to be using a 3rd party crash reporting tool. Has anyone seen this screen and do you know where I can find it? I started using http://code.google.com/p/android-remote-stacktrace/ but i rather not require internet permissions if I can use an intent to send emails.

alt text http://img532.yfrog.com/img532/808/devicefeedback.png

like image 631
Travis Avatar asked Mar 26 '10 17:03

Travis


People also ask

What is responsible for reporting application crashes?

A crash reporter is usually a system software whose function is to identify reporting crash details and to alert when there are crashes, in production or on development / testing environments. Crash reports often include data such as stack traces, type of crash, trends and version of software.

Why does my Android keep crashing Apps?

This usually occurs when your Wi-Fi or cellular data is slow or unstable, causing apps to malfunction. Another reason for Android apps crashing can be a lack of storage space in your device. This can occur when you overload your device's internal memory with heavy apps.


1 Answers

As the link you gave is an application under the `MIT˘ licence, you are allowed to change the application. in ExceptionHandler.java.submitStackTraces() is the code which sends the stacktrace. Edit this so that the information is send with an Intent for mail, which is possible.

like image 68
MrSnowflake Avatar answered Sep 25 '22 02:09

MrSnowflake