On my current project our test APK has grown over the 64k method limit. We have multidex enabled, so running tests on a device with API > 19 , gives no problems, but on API 19 the runner can't find classes in the second dex file.
I have tried reducing the androidTestCompile dependencies but the biggest culprit is espresso, which I need.
Are there any work arounds for the dex limit on the test APK running on platforms that don't natively support multidex ?