Reuse build configuration for logger

This commit is contained in:
Kirill Kamakin
2022-11-05 12:42:26 +01:00
parent 4eb119725a
commit bbc368ce69
11 changed files with 59 additions and 21 deletions

View File

@@ -0,0 +1,14 @@
plugins {
id("gq.kirmanak.mealient.library")
id("dagger.hilt.android.plugin")
id("kotlin-kapt")
}
android {
namespace = "gq.kirmanak.mealient.architecture"
}
dependencies {
implementation(libs.google.dagger.hiltAndroid)
kapt(libs.google.dagger.hiltCompiler)
}