AndroidAPS/workflow/build.gradle.kts

28 lines
774 B
Plaintext
Raw Normal View History

2023-10-19 21:18:14 +02:00
plugins {
id("com.android.library")
id("kotlin-android")
id("kotlin-kapt")
id("android-module-dependencies")
2023-10-19 22:48:49 +02:00
id("test-module-dependencies")
2023-10-19 21:18:14 +02:00
}
apply(from = "${project.rootDir}/core/main/jacoco_global.gradle")
android {
namespace = "app.aaps.workflow"
}
dependencies {
implementation(project(":core:libraries"))
implementation(project(":core:graphview"))
implementation(project(":core:interfaces"))
implementation(project(":core:main"))
implementation(project(":core:ui"))
implementation(project(":core:utils"))
implementation(project(":database:entities"))
implementation(project(":database:impl"))
implementation(project(":plugins:main"))
kapt(Libs.Dagger.compiler)
kapt(Libs.Dagger.androidProcessor)
}