Update project structure and impl all domain layer

This commit is contained in:
2023-12-09 21:15:22 +03:00
parent 0e195b0aee
commit 5c8a58beac
41 changed files with 705 additions and 83 deletions
+7 -1
View File
@@ -1,7 +1,7 @@
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
plugins {
alias(libs.plugins.androidLibrary)
alias(libs.plugins.kotlinAndroid)
alias(libs.plugins.ksp)
}
android {
@@ -59,6 +59,7 @@ dependencies {
implementation(libs.ui.graphics)
implementation(libs.ui.tooling.preview)
implementation(libs.material3)
implementation(project(mapOf("path" to ":devmenu:domain")))
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.test.ext.junit)
androidTestImplementation(libs.espresso.core)
@@ -66,4 +67,9 @@ dependencies {
androidTestImplementation(libs.ui.test.junit4)
debugImplementation(libs.ui.tooling)
debugImplementation(libs.ui.test.manifest)
implementation(libs.dagger)
ksp(libs.dagger.compiler)
implementation(libs.room)
ksp(libs.room.compiler)
}