refactor: Move source-api to source directory

Preparing to split local source to its own module
This commit is contained in:
Ahmad Ansori Palembani 2024-07-28 11:38:33 +07:00
parent 98df0773a2
commit 49ecfc51b1
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
26 changed files with 4 additions and 4 deletions

View file

@ -149,7 +149,7 @@ dependencies {
implementation(projects.domain)
implementation(projects.i18n)
implementation(projects.presentation.core)
implementation(projects.sourceApi)
implementation(projects.source.api)
// Compose
implementation(platform(compose.bom))

View file

@ -16,7 +16,7 @@ kotlin {
val androidMain by getting {
dependencies {
api(libs.bundles.db.android)
implementation(projects.sourceApi)
implementation(projects.source.api)
}
}
}

View file

@ -9,7 +9,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(projects.sourceApi)
implementation(projects.source.api)
}
}
val androidMain by getting {

View file

@ -44,4 +44,4 @@ include(":domain")
include(":i18n")
include(":presentation:core")
include(":presentation:widget")
include(":source-api")
include(":source:api")