AndroidAPS/plugins/source/build.gradle

29 lines
929 B
Groovy
Raw Normal View History

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-21 16:44:55 +02:00
implementation project(':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')
2023-09-24 23:31:31 +02:00
implementation project(':core:nssdk')
2022-12-09 16:20:40 +01:00
implementation project(':core:ui')
implementation project(':core:utils')
2023-09-03 21:57:18 +02:00
2023-09-21 16:44:55 +02:00
testImplementation project(':shared:tests')
2022-12-09 16:20:40 +01:00
}