Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Share Android Market's "Crash errors" information with developers

Android Market's "Crash errors" page is very useful for developers.

But how to use it in a team?

The crash information page should be visible by all developers, but I can't give my password as it would allow anyone to fiddle with the published APKs.

QUESTION: How to share the crashes reports? Is there an API or tool to export them regularly?
Copying them manually is not an option.

As a workaround, by now we are using our own crash reporting system (could have used ACRA).

like image 250
Nicolas Raoul Avatar asked Nov 17 '11 02:11

Nicolas Raoul


1 Answers

Write your own Thread.UncaughtExceptionHandler and call Thread.setDefaultUncaughtExceptionHandler( instance ) to register it. Thus you have all the control. It works fine if you don't have JNI parts.

It is not as easy as relying on Google Market, you have to collect information on your own and to send the report to your server, maybe send a email to your group is convenient.

In later of this year, we have seen several improvement of Market publishing interface, perhaps we should complain together in google's forum.

like image 121
pinxue Avatar answered Nov 15 '22 21:11

pinxue