blob: 7a99abd6f0e5e8c15758e17f4a639588f5bd1b72 [file] [log] [blame]
apply plugin: 'com.android.library'
apply plugin: org.robolectric.gradle.AndroidProjectConfigPlugin
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
}
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
testOptions.unitTests.includeAndroidResources true
}
dependencies {
// Testing dependencies
testImplementation project(path: ':testapp', configuration: 'default')
testImplementation project(":robolectric")
testImplementation project(":integration_tests:agp:testsupport")
testImplementation "junit:junit:4.12"
testImplementation("androidx.test:core:1.2.1-alpha01")
testImplementation("androidx.test:runner:1.3.0-alpha01")
testImplementation("androidx.test.ext:junit:1.1.2-alpha01")
}