AndroidAPS/pump/combo/build.gradle

31 lines
879 B
Groovy
Raw Normal View History

plugins {
id 'com.android.library'
id 'kotlin-android'
id 'kotlin-kapt'
id 'kotlin-allopen'
}
2021-02-21 14:34:31 +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-06-06 10:25:08 +02:00
android {
2023-07-19 15:04:25 +02:00
buildFeatures {
aidl true
}
2022-11-25 14:06:48 +01:00
namespace 'info.nightscout.pump.combo'
2022-06-06 10:25:08 +02:00
}
2021-02-21 14:34:31 +01:00
dependencies {
2022-11-25 22:14:46 +01:00
implementation project(':core:libraries')
implementation project(':core:interfaces')
2022-11-14 11:18:33 +01:00
implementation project(':core:ui')
2022-11-21 20:26:06 +01:00
implementation project(':core:utils')
2022-11-06 12:28:35 +01:00
implementation project(':app-wear-shared:shared')
2022-11-25 14:06:48 +01:00
// RuffyScripter
2023-07-15 11:17:56 +02:00
api "com.google.guava:guava:$guava_version"
2022-11-25 14:06:48 +01:00
2021-02-21 14:34:31 +01:00
}