rules.gradle revision e91336e8b425c4452b733d48708b3b09b9faaf32
1// See build.gradle for an explanation of what this file is.
2
3apply plugin: 'com.android.library'
4
5// Check if the android plugin version supports unit testing.
6if (configurations.findByName("testCompile")) {
7  dependencies {
8    testCompile "junit:junit:4.10"
9    testCompile "org.mockito:mockito-core:1.9.5"
10    testCompile "org.robolectric:robolectric:2.2"
11  }
12}
13