blob: c3abbba0571afdcf75f069bbdb5f8f267c57e58b [file] [log] [blame]
import org.robolectric.gradle.DeployedRoboJavaModulePlugin
import org.robolectric.gradle.RoboJavaModulePlugin
apply plugin: RoboJavaModulePlugin
apply plugin: 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:$guavaJREVersion"
compileOnly "androidx.fragment:fragment:1.2.0"
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:$junitVersion"
testImplementation "com.google.truth:truth:$truthVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testRuntimeOnly "androidx.fragment:fragment:1.2.0"
testRuntimeOnly "com.google.android.gms:play-services-base:8.4.0"
testRuntimeOnly "com.google.android.gms:play-services-basement:8.4.0"
testRuntimeOnly AndroidSdk.MAX_SDK.coordinates
}