I created a new android project with the following gradle file:
android {
   ...
   dexOptions {
        javaMaxHeapSize "4g"
    }
   ...
}
dependencies {
   ...
    compile 'com.linkedin.dexmaker:dexmaker-mockito:2.16.0'
   ...
}
But when I build my app I get:
Conflict with dependency 'com.android.support:multidex' in project ':app'. Resolved versions for app (1.0.3) and test app (1.0.1) differ. See http://g.co/androidstudio/app-test-app-conflict for details.
How can I solve this issue?
 
     
    