I am trying to incorporate Powermock as a dependency for my Android tests using the following build.gradle configuration:
dependencies{ compile \'com.and
you can try to put this in your build.gradle, it solved to me the same problem
android{ ... packagingOptions{ exclude 'mockito-extensions/org.mockito.plugins.MockMaker' } ... }