My Android studio project has an app module which is android framework dependent, I have created a new module called domain and it contains only pure java classes and a few test classes.
In this module's build.gradle file, I have added junit and mockito libraries for testing purpose as follows:
apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7
dependencies {
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-core:1.9.5'
compile project(':common')
compile project(':model')
//test dependencies
}
!!! JUnit version 3.8 or later expected
I managed to solve the problem by by changing the following in .iml file
from:
<component name="NewModuleRootManager" inherit-compiler-output="true">
to:
<orderEntry type="inheritedJdk" />