Home | History | Annotate | Download | only in android_support_test
      1 plugins {
      2     id "net.ltgt.errorprone" version "0.0.13"
      3 }
      4 
      5 apply plugin: RoboJavaModulePlugin
      6 
      7 dependencies {
      8     compile project(":robolectric")
      9     compile "junit:junit:4.12"
     10     compile("com.android.support.test:monitor:1.0.2-alpha1")
     11     compileOnly AndroidSdk.MAX_SDK.coordinates
     12 
     13     // Testing dependencies
     14     testRuntime AndroidSdk.MAX_SDK.coordinates
     15     testCompile("com.android.support.test:runner:1.0.2-alpha1")
     16     testCompile("com.android.support.test:rules:1.0.2-alpha1")
     17     testCompile "com.google.truth:truth:0.36"
     18 }
     19