summaryrefslogtreecommitdiff
path: root/rules.gradle
blob: 04dd68130ae6e070472e657601d74c713ca2fc3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// See build.gradle for an explanation of what this file is.

apply plugin: 'com.android.library'

// Check if the android plugin version supports unit testing.
if (configurations.findByName("testCompile")) {
  dependencies {
    testCompile "junit:junit:4.10"
    testCompile "org.mockito:mockito-core:1.9.5"
    testCompile "org.robolectric:robolectric:3.0"
  }
}