AndroidAPS/plugins/automation/build.gradle

34 lines
1.2 KiB
Groovy
Raw Normal View History

plugins {
id 'com.android.library'
id 'kotlin-android'
id 'kotlin-kapt'
id 'kotlin-allopen'
}
2021-02-22 17:22:30 +01:00
2022-12-02 10:56:11 +01:00
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"
2022-11-09 10:48:59 +01:00
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-11-25 22:14:46 +01:00
implementation project(':core:graphview')
2023-09-18 23:58:37 +02:00
implementation project(':core:interfaces')
2022-12-02 10:56:11 +01:00
implementation project(':core:main')
2022-11-21 20:26:06 +01:00
implementation project(':core:utils')
2022-11-14 10:58:59 +01:00
implementation project(':core:ui')
2022-12-02 10:56:11 +01:00
implementation project(':core:validators')
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-11-09 10:48:59 +01:00
2023-09-03 21:10:34 +02:00
testImplementation project(':app-wear-shared:shared-tests')
2022-12-07 19:55:08 +01:00
testImplementation project(':implementation')
2022-12-09 11:47:57 +01:00
testImplementation project(':plugins:main')
2022-12-07 19:55:08 +01:00
2022-11-09 10:48:59 +01:00
api "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
2022-11-17 20:37:51 +01:00
api "com.google.android.gms:play-services-location:$play_services_location_version"
2021-02-22 17:22:30 +01:00
}