2022-12-09 16:20:40 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.library'
|
|
|
|
id 'kotlin-android'
|
|
|
|
id 'kotlin-kapt'
|
|
|
|
id 'kotlin-allopen'
|
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "${project.rootDir}/core/main/android_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/main/android_module_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/main/allopen_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/main/test_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/main/jacoco_global.gradle"
|
|
|
|
android {
|
|
|
|
namespace 'info.nightscout.source'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2023-09-18 21:00:54 +02:00
|
|
|
implementation project(':app-wear-shared:shared-impl')
|
2022-12-09 16:20:40 +01:00
|
|
|
implementation project(':database:entities')
|
|
|
|
implementation project(':database:impl')
|
|
|
|
implementation project(':core:interfaces')
|
|
|
|
implementation project(':core:main')
|
|
|
|
implementation project(':core:ns-sdk')
|
|
|
|
implementation project(':core:ui')
|
|
|
|
implementation project(':core:utils')
|
2023-09-03 21:57:18 +02:00
|
|
|
|
|
|
|
testImplementation project(':app-wear-shared:shared-tests')
|
2022-12-09 16:20:40 +01:00
|
|
|
}
|