Skip to content

Commit

Permalink
Merge branch 'kmp-impl' into MIssing-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
itsPronay authored Jan 10, 2025
2 parents 2342c66 + cb31d2f commit d2846fd
Show file tree
Hide file tree
Showing 65 changed files with 6,157 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,22 @@ plugins {
alias(libs.plugins.detekt) apply false
alias(libs.plugins.spotless) apply false
alias(libs.plugins.ktlint) apply false
alias(libs.plugins.module.graph) apply true // Plugin for module graph generation

//Multiplatform Plugins
alias(libs.plugins.jetbrainsCompose) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.kotlinMultiplatform) apply false
alias(libs.plugins.wire) apply false
alias(libs.plugins.ktorfit) apply false
}

// Task to print all the module paths in the project e.g. :core:data
// Used by module graph generator script
tasks.register("printModulePaths") {
subprojects {
if (subprojects.size == 0) {
println(this.path)
}
}
}
3 changes: 3 additions & 0 deletions core/common/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:common module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_common.svg)
3 changes: 3 additions & 0 deletions core/data/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:data module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_data.svg)
3 changes: 3 additions & 0 deletions core/database/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:database module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_database.svg)
3 changes: 3 additions & 0 deletions core/datastore/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:datastore module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_datastore.svg)
3 changes: 3 additions & 0 deletions core/designsystem/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:designsystem module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_designsystem.svg)
3 changes: 3 additions & 0 deletions core/domain/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:domain module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_domain.svg)
3 changes: 3 additions & 0 deletions core/model/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:model module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_model.svg)
3 changes: 3 additions & 0 deletions core/network/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:network module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_network.svg)
3 changes: 3 additions & 0 deletions core/testing/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:testing module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_testing.svg)
3 changes: 3 additions & 0 deletions core/ui/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# :core:ui module
## Dependency graph
![Dependency graph](../../docs/images/graphs/dep_graph_core_ui.svg)
31 changes: 31 additions & 0 deletions docs/images/graphs/dep_graph_core_common.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
127 changes: 127 additions & 0 deletions docs/images/graphs/dep_graph_core_data.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions docs/images/graphs/dep_graph_core_datastore.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions docs/images/graphs/dep_graph_core_designsystem.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d2846fd

Please sign in to comment.