AndroidAPS/pump/virtual/build.gradle

26 lines
728 B
Groovy
Raw Normal View History

2022-12-09 15:34:11 +01:00
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'kotlin-kapt'
id 'kotlin-allopen'
}
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 {
2023-09-27 09:30:12 +02:00
namespace 'app.aaps.pump.virtual'
2022-12-09 15:34:11 +01:00
}
dependencies {
implementation project(':database:entities')
implementation project(':core:interfaces')
implementation project(':core:main')
implementation project(':core:ui')
implementation project(':core:utils')
2023-09-04 09:42:15 +02:00
2023-09-21 16:44:55 +02:00
testImplementation project(':shared:tests')
2022-12-09 15:34:11 +01:00
}