Stack tracing is critical for troubleshooting. On Android, you can find nice reports in the Play Store console. If you are not using Google Analytics V2. In this case, Google Analytics seems to be swallowing exceptions. Even worse, Google Analytics seems to only log the first line of the exception and thus loses the stack. At least it does not appear in the error report.
Here is a clipping 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, maybe something is missing / wrong in our application?
android exception-handling google-analytics
Markus junginger
source share