blob: 8e6883ac743194291c954c4c9f86a43be8c5c4e4 [file] [log] [blame]
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
testOptions {
unitTests.returnDefaultValues = true
}
}
dependencies {
compile project(":common")
// using classes like Pair from support core allows Lifecycle to be compatible w/ junit tests
compile "com.android.support:support-core-utils:25.0.0"
testCompile 'junit:junit:4.12'
testCompile "org.mockito:mockito-core:1.9.5"
}