35 lines
1,023 B
Plaintext
35 lines
1,023 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
id("kotlin-android")
|
|
id("kotlin-kapt")
|
|
id("android-module-dependencies")
|
|
id("test-dependencies")
|
|
}
|
|
|
|
apply(from = "${project.rootDir}/core/main/jacoco_global.gradle")
|
|
|
|
android {
|
|
namespace = "app.aaps.plugins.automation"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:graphview"))
|
|
implementation(project(":core:interfaces"))
|
|
implementation(project(":core:main"))
|
|
implementation(project(":core:utils"))
|
|
implementation(project(":core:ui"))
|
|
implementation(project(":core:validators"))
|
|
implementation(project(":database:entities"))
|
|
implementation(project(":database:impl"))
|
|
|
|
testImplementation(project(":shared:tests"))
|
|
testImplementation(project(":shared:impl"))
|
|
testImplementation(project(":implementation"))
|
|
testImplementation(project(":plugins:main"))
|
|
|
|
api(Libs.AndroidX.constraintLayout)
|
|
api(Libs.Google.Android.PlayServices.location)
|
|
|
|
kapt(Libs.Dagger.compiler)
|
|
kapt(Libs.Dagger.androidProcessor)
|
|
} |