Implement logging module

This commit is contained in:
Kirill Kamakin
2022-08-05 18:58:21 +02:00
parent 057651c60f
commit ba5f7322ab
11 changed files with 207 additions and 3 deletions

14
logging/build.gradle.kts Normal file
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.logging"
}
dependencies {
implementation(libs.google.dagger.hiltAndroid)
kapt(libs.google.dagger.hiltCompiler)
}