blob: 62d47d745bd91117452c090f1eed4345cb66a0c7 [file] [log] [blame]
apply plugin: org.robolectric.gradle.RoboJavaModulePlugin
apply plugin: org.robolectric.gradle.DeployedRoboJavaModulePlugin
apply plugin: ShadowsPlugin
shadows {
packageName "org.robolectric.shadows.gms"
sdkCheckMode "OFF"
}
dependencies {
compileOnly project(":shadows:framework")
api project(":annotations")
api "com.google.guava:guava:27.0.1-jre"
compileOnly "com.android.support:support-fragment:26.0.1"
compileOnly "com.google.android.gms:play-services-base:8.4.0"
compileOnly "com.google.android.gms:play-services-basement:8.4.0"
compileOnly AndroidSdk.MAX_SDK.coordinates
testCompileOnly AndroidSdk.MAX_SDK.coordinates
testCompileOnly "com.google.android.gms:play-services-base:8.4.0"
testCompileOnly "com.google.android.gms:play-services-basement:8.4.0"
testImplementation project(":robolectric")
testImplementation "junit:junit:4.12"
testImplementation "com.google.truth:truth:1.0.1"
testImplementation "org.mockito:mockito-core:2.5.4"
testRuntime "com.android.support:support-fragment:26.0.1"
testRuntime "com.google.android.gms:play-services-base:8.4.0"
testRuntime "com.google.android.gms:play-services-basement:8.4.0"
testRuntime AndroidSdk.MAX_SDK.coordinates
}