Which package for MultiDexTestRunner? android.support.multidex or com.android.test.runner
The page http://developer.android.com/tools/building/multidex.html#testing advises dependencies { compile 'com.android.support:multidex:1.0.1' androidTestCompile 'com.android.support:multidex-instrumentation:1.0.1' } android { defaultConfig { multiDexEnabled true testInstrumentationRunner "android.support.multidex.MultiDexTestRunner" } } But that produces a ClassNotFoundException when the tests are run. The API documentation and dexdump show that there is com.android.test.runner.MultiDexTestRunner. So if I disbelieve the documentation and instead specify dependencies { compile 'com.android