17 lines
332 B
Kotlin
17 lines
332 B
Kotlin
plugins {
|
|
id("com.atridad.mealient.library")
|
|
id("dagger.hilt.android.plugin")
|
|
alias(libs.plugins.ksp)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.atridad.mealient.logging"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":architecture"))
|
|
|
|
implementation(libs.google.dagger.hiltAndroid)
|
|
ksp(libs.google.dagger.hiltCompiler)
|
|
}
|