25 lines
826 B
Groovy
25 lines
826 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-allopen'
|
|
apply plugin: 'com.hiya.jacoco-android'
|
|
|
|
apply from: "${project.rootDir}/core/android_dependencies.gradle"
|
|
apply from: "${project.rootDir}/core/android_module_dependencies.gradle"
|
|
apply from: "${project.rootDir}/core/test_dependencies.gradle"
|
|
apply from: "${project.rootDir}/core/jacoco_global.gradle"
|
|
android {
|
|
namespace 'info.nightscout.androidaps.plugins.pump.common'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation project(':app-wear-shared:rx')
|
|
implementation project(':app-wear-shared:shared')
|
|
implementation project(':interfaces')
|
|
|
|
implementation('com.thoughtworks.xstream:xstream:1.4.19') {
|
|
exclude group: 'xmlpull', module: 'xmlpull'
|
|
}
|
|
}
|