So I recently merged my robolectric 3.0 upgrade with our mainline, which had added multidex support to our application. Unfortunately, this had the unfortunate side effect of ca
Just add multi-dex shadow dependency:
testImplementation "org.robolectric:shadows-multidex:4.0.1"
If you are using Robolectric < 3.4 instead use:
testImplementation "org.robolectric:multidex:3.4.2"