I ran into this crasher in my Android application. This happens on launch when the jacoco plugin has been applied to a gradle plugin we have written, which is applied to our project. I was able to find some documentation on this issue on the [FAQ.](http://www.jacoco.org/jacoco/trunk/doc/faq.html)
I have been added the following to my build.gradle and it resolves the crasher:
//required for jacoco
// compile 'org.jacoco:org.jacoco.agent:0.7.9:runtime'
However, I don't understand why this is necessary. Why is jacoco effecting my runtime, and does anyone know of a way to turn off offline mode? For some reason even without the additional dependency my instrumentation tests run fine on a device w/o crashing. Code coverage is coming through fine as well w/o this dependency.