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.shared.impl"
|
|
|
|
defaultConfig {
|
|
|
|
minSdk = Versions.wearMinSdk // for wear
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":core:interfaces"))
|
|
|
|
|
|
|
|
kapt(Libs.Dagger.compiler)
|
|
|
|
kapt(Libs.Dagger.androidProcessor)
|
|
|
|
}
|