I can successfully build and run my Android app in my debug and release variants with no problem. Yet, when I try to run my new unit tests (I never had them before), I get t
If you only need multidex support for tests, you can enable it only for tests with a line like the following in your build.gradle:
build.gradle
dependencies { ... androidTestCompile 'com.android.support:multidex:1.0.1' }