23 lines
799 B
Groovy
23 lines
799 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.medtronic'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':libraries')
|
|
implementation project(':app-wear-shared:rx')
|
|
implementation project(':app-wear-shared:shared')
|
|
implementation project(':core')
|
|
implementation project(':pump:pump-common')
|
|
implementation project(':pump:rileylink')
|
|
}
|