refactor: rename domain module to core module

This commit is contained in:
2026-04-24 17:42:18 +02:00
parent 57e2983527
commit 7232352014
57 changed files with 4 additions and 4 deletions

View File

@@ -52,7 +52,7 @@ kotlin {
dependencies {
implementation(project(":data"))
implementation(project(":domain"))
implementation(project(":core"))
implementation(project(":ui-common"))
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)

View File

@@ -51,7 +51,7 @@ kotlin {
dependencies {
implementation(project(":data"))
implementation(project(":domain"))
implementation(project(":core"))
implementation(project(":ui-common"))
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)

View File

@@ -26,5 +26,5 @@ rootProject.name = "Purefin"
include(":app")
include(":app-tv")
include(":data")
include(":domain")
include(":core")
include(":ui-common")

View File

@@ -32,7 +32,7 @@ kotlin {
dependencies {
implementation(project(":data"))
implementation(project(":domain"))
implementation(project(":core"))
implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.compose.ui)
implementation(libs.androidx.compose.ui.graphics)