AndroidAPS/automation/build.gradle

22 lines
763 B
Groovy
Raw Normal View History

2021-02-22 17:22:30 +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-22 17:22:30 +01:00
apply plugin: 'com.hiya.jacoco-android'
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 {
2022-11-04 10:32:12 +01:00
namespace 'info.nightscout.automation'
2022-06-06 10:25:08 +02:00
}
2021-02-22 17:22:30 +01:00
dependencies {
2022-10-31 16:16:39 +01:00
implementation project(':graphview')
2021-02-22 17:22:30 +01:00
implementation project(':core')
implementation project(':database')
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-22 17:22:30 +01:00
}