e24af3934f
- moved 2 filed into pump-common module (newly created)
25 lines
649 B
Groovy
25 lines
649 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'com.hiya.jacoco-android'
|
|
|
|
apply from: "${project.rootDir}/gradle/android_dependencies.gradle"
|
|
apply from: "${project.rootDir}/gradle/android_module_dependencies.gradle"
|
|
apply from: "${project.rootDir}/gradle/test_dependencies.gradle"
|
|
|
|
android {
|
|
defaultConfig {
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
//implementation project(':database')
|
|
|
|
implementation('com.thoughtworks.xstream:xstream:1.4.7') {
|
|
exclude group: 'xmlpull', module: 'xmlpull'
|
|
}
|
|
}
|