2021-02-20 18:48:06 +01:00
|
|
|
|
2021-02-18 23:31:31 +01:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
2021-09-21 21:57:56 +02:00
|
|
|
apply plugin: 'kotlin-allopen'
|
2021-02-20 18:48:06 +01:00
|
|
|
apply plugin: 'com.hiya.jacoco-android'
|
2021-02-18 23:31:31 +01:00
|
|
|
|
2022-05-11 10:18:14 +02:00
|
|
|
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"
|
2022-06-06 10:25:08 +02:00
|
|
|
android {
|
|
|
|
namespace 'info.nightscout.androidaps.plugins.pump.omnipod.common'
|
|
|
|
}
|
2021-02-18 23:31:31 +01:00
|
|
|
|
|
|
|
dependencies {
|
2022-10-27 16:42:09 +02:00
|
|
|
implementation project(':libraries')
|
2021-02-18 23:31:31 +01:00
|
|
|
implementation project(':core')
|
2022-11-06 12:28:35 +01:00
|
|
|
implementation project(':app-wear-shared:rx')
|
|
|
|
implementation project(':app-wear-shared:shared')
|
2022-11-06 17:48:42 +01:00
|
|
|
implementation project(':interfaces')
|
2021-02-18 23:31:31 +01:00
|
|
|
}
|