27 lines
920 B
Groovy
27 lines
920 B
Groovy
|
plugins {
|
||
|
id 'com.android.library'
|
||
|
id 'kotlin-android'
|
||
|
id 'kotlin-kapt'
|
||
|
id 'kotlin-allopen'
|
||
|
id 'com.hiya.jacoco-android'
|
||
|
}
|
||
|
|
||
|
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/allopen_dependencies.gradle"
|
||
|
apply from: "${project.rootDir}/core/core-main/test_dependencies.gradle"
|
||
|
apply from: "${project.rootDir}/core/core-main/jacoco_global.gradle"
|
||
|
android {
|
||
|
namespace 'info.nightscout.configuration'
|
||
|
}
|
||
|
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':interfaces')
|
||
|
implementation project(':app-wear-shared:rx')
|
||
|
implementation project(':app-wear-shared:shared')
|
||
|
implementation project(':database:entities')
|
||
|
implementation project(':core:core-main')
|
||
|
implementation project(':core:fabric')
|
||
|
implementation project(':core:ui')
|
||
|
}
|