2022-11-08 09:23:46 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.library'
|
|
|
|
id 'kotlin-android'
|
|
|
|
id 'kotlin-kapt'
|
|
|
|
id 'kotlin-allopen'
|
|
|
|
id 'com.hiya.jacoco-android'
|
|
|
|
}
|
2022-10-31 20:20:41 +01:00
|
|
|
|
2022-11-09 13:30:48 +01:00
|
|
|
apply from: "${project.rootDir}/core/core-main/android_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/core-main/android_module_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/core-main/test_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/core-main/allopen_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/core-main/jacoco_global.gradle"
|
2022-10-31 20:20:41 +01:00
|
|
|
android {
|
|
|
|
namespace 'info.nightscout.implementation'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-11-06 12:28:35 +01:00
|
|
|
implementation project(':app-wear-shared:rx')
|
|
|
|
implementation project(':app-wear-shared:shared')
|
2022-11-09 23:28:48 +01:00
|
|
|
implementation project(':database:entities')
|
2022-11-09 16:49:36 +01:00
|
|
|
implementation project(':database:impl')
|
2022-10-31 20:20:41 +01:00
|
|
|
implementation project(':automation')
|
2022-11-06 17:48:42 +01:00
|
|
|
implementation project(':interfaces')
|
2022-11-09 15:56:59 +01:00
|
|
|
implementation project(':core:core-main')
|
|
|
|
implementation project(':core:fabric')
|
2022-10-31 20:20:41 +01:00
|
|
|
}
|