Google Developer console allows to export crash report by some period of time as *.csv file. This file may be even accessed by gsutil
, but this file do not contain full stack traces - only links to pages on which stacktrace is printed. Something like this:
So questions are:
P.S. We use Google Developer Console as main instrument to analyze crashes. There are better alternatives... but this question not about them
As I had not found any solution, I wrote a simple python program which download stacktraces by links from *.csv. Csv file with links to stacktraces you can easily download from google play (even automatically)
Program is emulating browser with cookies and javascript to be able to receive desired page and after thet parses html - so solution is not reliable
Here is the link to programm