Skip to content

Commit

Permalink
chore: Update Module Dependencies (fixes #85)
Browse files Browse the repository at this point in the history
- docs: Update modularization-graph image
  • Loading branch information
azrael8576 committed Jan 26, 2024
1 parent d7d62e9 commit afe1eff
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 17 deletions.
2 changes: 0 additions & 2 deletions core/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ android {
}

dependencies {
implementation(projects.core.model)

// LifeCycle
implementation(libs.androidx.lifecycle.runtimeCompose)

Expand Down
8 changes: 4 additions & 4 deletions core/data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ android {
}

dependencies {
implementation(projects.core.common)
implementation(projects.core.network)
implementation(projects.core.model)
implementation(projects.core.datastore)
api(projects.core.common)
api(projects.core.network)
api(projects.core.model)
api(projects.core.datastore)

implementation(libs.kotlinx.serialization.json)
}
6 changes: 2 additions & 4 deletions core/domain/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ android {
}

dependencies {
implementation(projects.core.common)
implementation(projects.core.data)
implementation(projects.core.model)
implementation(projects.core.network)
api(projects.core.data)
api(projects.core.model)
}
3 changes: 2 additions & 1 deletion core/network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ secrets {
}

dependencies {
implementation(projects.core.common)
api(projects.core.common)
api(projects.core.model)

// Okhttp Interceptor
implementation(libs.okhttp.logging)
Expand Down
11 changes: 5 additions & 6 deletions core/testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,8 @@ android {


dependencies {
implementation(projects.core.common)
implementation(projects.core.data)
implementation(projects.core.model)
implementation(projects.core.domain)
implementation(projects.core.network)
implementation(projects.core.designsystem)
api(projects.core.data)
api(projects.core.model)

api(libs.junit4)
api(libs.androidx.activity.compose)
Expand All @@ -38,4 +34,7 @@ dependencies {
api(libs.roborazzi)

debugApi(libs.androidx.compose.ui.testManifest)

implementation(projects.core.common)
implementation(projects.core.designsystem)
}
Binary file modified docs/images/modularization-graph.drawio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit afe1eff

Please sign in to comment.