The stack trace is crucial to fix problems. In Android you can find nice reports in the Play store console. Unless you use Google Analytics V2. In this case Analytics seems to swallow the exceptions. Worse, Analytics seems to log only the first line of the exception and thus loosing the stacktrace. At least it is not shown in the error report.
Here's a snip from our analytics.xml:
<!-- Enable automatic exception tracking -->
<bool name="ga_reportUncaughtExceptions">true</bool>
<bool name="ga_debug">false</bool>
See also here: https://developers.google.com/analytics/devguides/collection/android/v2/exceptions#easytracker
So, could there be something missing/wrong in our app?
`StandardExceptionParser standardExceptionParser = new StandardExceptionParser(this, null); Log.e("TEST", standardExceptionParser.getDescription(Thread.currentThread().getName(), new RuntimeException("Testing StandardExceptionParser stack trace")));`
Outputs = `RuntimeException (@MainActivity:onCreate:29) {main}` – Dan Dar3 Jan 05 '14 at 01:39