35 lines
875 B
Plaintext
35 lines
875 B
Plaintext
|
plugins {
|
||
|
id("com.android.library")
|
||
|
id("kotlin-android")
|
||
|
id("kotlin-kapt")
|
||
|
id("kotlin-parcelize")
|
||
|
id("android-module-dependencies")
|
||
|
id("test-dependencies")
|
||
|
}
|
||
|
|
||
|
apply(from = "${project.rootDir}/core/main/jacoco_global.gradle")
|
||
|
|
||
|
android {
|
||
|
namespace = "app.aaps.plugins.configuration"
|
||
|
}
|
||
|
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":database:entities"))
|
||
|
implementation(project(":core:interfaces"))
|
||
|
implementation(project(":core:main"))
|
||
|
implementation(project(":core:nssdk"))
|
||
|
implementation(project(":core:utils"))
|
||
|
implementation(project(":core:ui"))
|
||
|
implementation(project(":core:validators"))
|
||
|
|
||
|
testImplementation(project(":shared:tests"))
|
||
|
|
||
|
//WorkManager
|
||
|
api(Libs.AndroidX.Work.runtimeKtx)
|
||
|
// Maintenance
|
||
|
api(Libs.AndroidX.gridLayout)
|
||
|
|
||
|
kapt(Libs.Dagger.compiler)
|
||
|
kapt(Libs.Dagger.androidProcessor)
|
||
|
}
|