An android application that I am currently developing was crashing (fixed that), due to what should have raised an IndexOutOfBoundsException. I was accessing a string in the doI
As per fadden's suspect that external library could override uncaught exception handler, I started to investigate any possible libs. Turned out that GoogleAnalytics
throttles crashes and prevents the stack trace from being displayed in logcat if you turn on enableExceptionReporting
. I remove this line of code then everything gets back on track!! That could be the first time I was so happy to see crashes!!