2017-01-04 19:17:53 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'com.getkeepsafe.dexcount'
|
|
|
|
|
|
|
|
group = GROUP
|
|
|
|
version = VERSION_NAME
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion versions.compileSdk
|
|
|
|
buildToolsVersion versions.buildTools
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion versions.minSdk
|
|
|
|
targetSdkVersion versions.targetSdk
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
minifyEnabled false
|
|
|
|
zipAlignEnabled false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
disable 'InvalidPackage'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile libraries.okio
|
|
|
|
compile libraries.gson
|
|
|
|
|
|
|
|
compile libraries.rxJava
|
2017-01-12 10:48:25 +00:00
|
|
|
compile libraries.supportAnnotations
|
2017-01-04 19:17:53 +00:00
|
|
|
compile project(path: ':cache')
|
|
|
|
compile project(path: ':store')
|
|
|
|
compile project(path: ':middleware')
|
|
|
|
testCompile libraries.mockito
|
|
|
|
testCompile libraries.assertJ
|
|
|
|
testCompile libraries.junit
|
|
|
|
testCompile libraries.robolectric
|
|
|
|
}
|
|
|
|
apply from: rootProject.file("gradle/maven-push.gradle")
|
2017-01-11 15:04:44 +00:00
|
|
|
apply from: rootProject.file("gradle/checkstyle.gradle")
|
2017-01-11 20:11:41 +00:00
|
|
|
apply from: rootProject.file("gradle/pmd.gradle")
|
|
|
|
|
2017-01-04 19:17:53 +00:00
|
|
|
|