AndroidAPS/shared/impl/build.gradle.kts
2023-10-20 10:49:54 +02:00

22 lines
463 B
Plaintext

plugins {
id("com.android.library")
id("kotlin-android")
id("kotlin-kapt")
id("android-module-dependencies")
id("test-module-dependencies")
id("jacoco-module-dependencies")
}
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)
}