parent
e079e68815
commit
e8dc43b58b
@ -0,0 +1,33 @@
|
||||
# `:app-nia-catalog`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
:app-nia-catalog[app-nia-catalog]:::android-application
|
||||
|
||||
:app-nia-catalog -.-> :core:designsystem
|
||||
:app-nia-catalog -.-> :core:ui
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,109 @@
|
||||
# `:app`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:domain[domain]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
subgraph :feature
|
||||
direction TB
|
||||
:feature:bookmarks[bookmarks]:::android-library
|
||||
:feature:foryou[foryou]:::android-library
|
||||
:feature:interests[interests]:::android-library
|
||||
:feature:search[search]:::android-library
|
||||
:feature:settings[settings]:::android-library
|
||||
:feature:topic[topic]:::android-library
|
||||
end
|
||||
subgraph :sync
|
||||
direction TB
|
||||
:sync:work[work]:::android-library
|
||||
end
|
||||
:benchmarks[benchmarks]:::android-test
|
||||
:app[app]:::android-application
|
||||
|
||||
:app -.->|baselineProfile| :benchmarks
|
||||
:app -.-> :core:analytics
|
||||
:app -.-> :core:common
|
||||
:app -.-> :core:data
|
||||
:app -.-> :core:designsystem
|
||||
:app -.-> :core:model
|
||||
:app -.-> :core:ui
|
||||
:app -.-> :feature:bookmarks
|
||||
:app -.-> :feature:foryou
|
||||
:app -.-> :feature:interests
|
||||
:app -.-> :feature:search
|
||||
:app -.-> :feature:settings
|
||||
:app -.-> :feature:topic
|
||||
:app -.-> :sync:work
|
||||
:benchmarks -.->|testedApks| :app
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:domain ---> :core:data
|
||||
:core:domain ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
:feature:bookmarks -.-> :core:data
|
||||
:feature:bookmarks -.-> :core:designsystem
|
||||
:feature:bookmarks -.-> :core:ui
|
||||
:feature:foryou -.-> :core:data
|
||||
:feature:foryou -.-> :core:designsystem
|
||||
:feature:foryou -.-> :core:domain
|
||||
:feature:foryou -.-> :core:notifications
|
||||
:feature:foryou -.-> :core:ui
|
||||
:feature:interests -.-> :core:data
|
||||
:feature:interests -.-> :core:designsystem
|
||||
:feature:interests -.-> :core:domain
|
||||
:feature:interests -.-> :core:ui
|
||||
:feature:search -.-> :core:data
|
||||
:feature:search -.-> :core:designsystem
|
||||
:feature:search -.-> :core:domain
|
||||
:feature:search -.-> :core:ui
|
||||
:feature:settings -.-> :core:data
|
||||
:feature:settings -.-> :core:designsystem
|
||||
:feature:settings -.-> :core:ui
|
||||
:feature:topic -.-> :core:data
|
||||
:feature:topic -.-> :core:designsystem
|
||||
:feature:topic -.-> :core:ui
|
||||
:sync:work -.-> :core:analytics
|
||||
:sync:work -.-> :core:data
|
||||
:sync:work -.-> :core:notifications
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,109 @@
|
||||
# `:benchmarks`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:domain[domain]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
subgraph :feature
|
||||
direction TB
|
||||
:feature:bookmarks[bookmarks]:::android-library
|
||||
:feature:foryou[foryou]:::android-library
|
||||
:feature:interests[interests]:::android-library
|
||||
:feature:search[search]:::android-library
|
||||
:feature:settings[settings]:::android-library
|
||||
:feature:topic[topic]:::android-library
|
||||
end
|
||||
subgraph :sync
|
||||
direction TB
|
||||
:sync:work[work]:::android-library
|
||||
end
|
||||
:benchmarks[benchmarks]:::android-test
|
||||
:app[app]:::android-application
|
||||
|
||||
:app -.->|baselineProfile| :benchmarks
|
||||
:app -.-> :core:analytics
|
||||
:app -.-> :core:common
|
||||
:app -.-> :core:data
|
||||
:app -.-> :core:designsystem
|
||||
:app -.-> :core:model
|
||||
:app -.-> :core:ui
|
||||
:app -.-> :feature:bookmarks
|
||||
:app -.-> :feature:foryou
|
||||
:app -.-> :feature:interests
|
||||
:app -.-> :feature:search
|
||||
:app -.-> :feature:settings
|
||||
:app -.-> :feature:topic
|
||||
:app -.-> :sync:work
|
||||
:benchmarks -.->|testedApks| :app
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:domain ---> :core:data
|
||||
:core:domain ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
:feature:bookmarks -.-> :core:data
|
||||
:feature:bookmarks -.-> :core:designsystem
|
||||
:feature:bookmarks -.-> :core:ui
|
||||
:feature:foryou -.-> :core:data
|
||||
:feature:foryou -.-> :core:designsystem
|
||||
:feature:foryou -.-> :core:domain
|
||||
:feature:foryou -.-> :core:notifications
|
||||
:feature:foryou -.-> :core:ui
|
||||
:feature:interests -.-> :core:data
|
||||
:feature:interests -.-> :core:designsystem
|
||||
:feature:interests -.-> :core:domain
|
||||
:feature:interests -.-> :core:ui
|
||||
:feature:search -.-> :core:data
|
||||
:feature:search -.-> :core:designsystem
|
||||
:feature:search -.-> :core:domain
|
||||
:feature:search -.-> :core:ui
|
||||
:feature:settings -.-> :core:data
|
||||
:feature:settings -.-> :core:designsystem
|
||||
:feature:settings -.-> :core:ui
|
||||
:feature:topic -.-> :core:data
|
||||
:feature:topic -.-> :core:designsystem
|
||||
:feature:topic -.-> :core:ui
|
||||
:sync:work -.-> :core:analytics
|
||||
:sync:work -.-> :core:data
|
||||
:sync:work -.-> :core:notifications
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,23 @@
|
||||
# `:core:analytics`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
end
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,23 @@
|
||||
# `:core:common`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:common[common]:::jvm
|
||||
end
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,48 @@
|
||||
# `:core:data-test`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:data-test[data-test]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:data-test ---> :core:data
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,46 @@
|
||||
# `:core:data`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,26 @@
|
||||
# `:core:database`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:database[database]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
end
|
||||
|
||||
:core:database ---> :core:model
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,23 @@
|
||||
# `:core:datastore-proto`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
end
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,33 @@
|
||||
# `:core:datastore-test`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:common[common]:::jvm
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:datastore-test[datastore-test]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
end
|
||||
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:datastore-test -.-> :core:common
|
||||
:core:datastore-test -.-> :core:datastore
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,30 @@
|
||||
# `:core:datastore`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:common[common]:::jvm
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
end
|
||||
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,23 @@
|
||||
# `:core:designsystem`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
end
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,49 @@
|
||||
# `:core:domain`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:domain[domain]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:domain ---> :core:data
|
||||
:core:domain ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,23 @@
|
||||
# `:core:model`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:model[model]:::jvm
|
||||
end
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,28 @@
|
||||
# `:core:network`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:common[common]:::jvm
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
end
|
||||
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,28 @@
|
||||
# `:core:notifications`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:common[common]:::jvm
|
||||
:core:model[model]:::jvm
|
||||
:core:notifications[notifications]:::android-library
|
||||
end
|
||||
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,26 @@
|
||||
# `:core:screenshot-testing`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:screenshot-testing[screenshot-testing]:::android-library
|
||||
end
|
||||
|
||||
:core:screenshot-testing -.-> :core:designsystem
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,52 @@
|
||||
# `:core:testing`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
:core:testing[testing]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:core:testing ---> :core:analytics
|
||||
:core:testing ---> :core:common
|
||||
:core:testing ---> :core:data
|
||||
:core:testing ---> :core:model
|
||||
:core:testing ---> :core:notifications
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,30 @@
|
||||
# `:core:ui`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,58 @@
|
||||
# `:feature:bookmarks`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
subgraph :feature
|
||||
direction TB
|
||||
:feature:bookmarks[bookmarks]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
:feature:bookmarks -.-> :core:data
|
||||
:feature:bookmarks -.-> :core:designsystem
|
||||
:feature:bookmarks -.-> :core:ui
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,63 @@
|
||||
# `:feature:foryou`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:domain[domain]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
subgraph :feature
|
||||
direction TB
|
||||
:feature:foryou[foryou]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:domain ---> :core:data
|
||||
:core:domain ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
:feature:foryou -.-> :core:data
|
||||
:feature:foryou -.-> :core:designsystem
|
||||
:feature:foryou -.-> :core:domain
|
||||
:feature:foryou -.-> :core:notifications
|
||||
:feature:foryou -.-> :core:ui
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,62 @@
|
||||
# `:feature:interests`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:domain[domain]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
subgraph :feature
|
||||
direction TB
|
||||
:feature:interests[interests]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:domain ---> :core:data
|
||||
:core:domain ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
:feature:interests -.-> :core:data
|
||||
:feature:interests -.-> :core:designsystem
|
||||
:feature:interests -.-> :core:domain
|
||||
:feature:interests -.-> :core:ui
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,62 @@
|
||||
# `:feature:search`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:domain[domain]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
subgraph :feature
|
||||
direction TB
|
||||
:feature:search[search]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:domain ---> :core:data
|
||||
:core:domain ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
:feature:search -.-> :core:data
|
||||
:feature:search -.-> :core:designsystem
|
||||
:feature:search -.-> :core:domain
|
||||
:feature:search -.-> :core:ui
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,58 @@
|
||||
# `:feature:settings`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
subgraph :feature
|
||||
direction TB
|
||||
:feature:settings[settings]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
:feature:settings -.-> :core:data
|
||||
:feature:settings -.-> :core:designsystem
|
||||
:feature:settings -.-> :core:ui
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,58 @@
|
||||
# `:feature:topic`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:designsystem[designsystem]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
:core:ui[ui]:::android-library
|
||||
end
|
||||
subgraph :feature
|
||||
direction TB
|
||||
:feature:topic[topic]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:core:ui ---> :core:analytics
|
||||
:core:ui ---> :core:designsystem
|
||||
:core:ui ---> :core:model
|
||||
:feature:topic -.-> :core:data
|
||||
:feature:topic -.-> :core:designsystem
|
||||
:feature:topic -.-> :core:ui
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,56 @@
|
||||
# `:sync:sync-test`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
end
|
||||
subgraph :sync
|
||||
direction TB
|
||||
:sync:sync-test[sync-test]:::android-library
|
||||
:sync:work[work]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:sync:sync-test -.-> :core:data
|
||||
:sync:sync-test -.-> :sync:work
|
||||
:sync:work -.-> :core:analytics
|
||||
:sync:work -.-> :core:data
|
||||
:sync:work -.-> :core:notifications
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,53 @@
|
||||
# `:sync:work`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
subgraph :core
|
||||
direction TB
|
||||
:core:analytics[analytics]:::android-library
|
||||
:core:common[common]:::jvm
|
||||
:core:data[data]:::android-library
|
||||
:core:database[database]:::android-library
|
||||
:core:datastore[datastore]:::android-library
|
||||
:core:datastore-proto[datastore-proto]:::android-library
|
||||
:core:model[model]:::jvm
|
||||
:core:network[network]:::android-library
|
||||
:core:notifications[notifications]:::android-library
|
||||
end
|
||||
subgraph :sync
|
||||
direction TB
|
||||
:sync:work[work]:::android-library
|
||||
end
|
||||
|
||||
:core:data -.-> :core:analytics
|
||||
:core:data ---> :core:common
|
||||
:core:data ---> :core:database
|
||||
:core:data ---> :core:datastore
|
||||
:core:data ---> :core:network
|
||||
:core:data -.-> :core:notifications
|
||||
:core:database ---> :core:model
|
||||
:core:datastore -.-> :core:common
|
||||
:core:datastore ---> :core:datastore-proto
|
||||
:core:datastore ---> :core:model
|
||||
:core:network ---> :core:common
|
||||
:core:network ---> :core:model
|
||||
:core:notifications -.-> :core:common
|
||||
:core:notifications ---> :core:model
|
||||
:sync:work -.-> :core:analytics
|
||||
:sync:work -.-> :core:data
|
||||
:sync:work -.-> :core:notifications
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
@ -0,0 +1,20 @@
|
||||
# `:ui-test-hilt-manifest`
|
||||
|
||||
<!--region graph-->
|
||||
```mermaid
|
||||
---
|
||||
config:
|
||||
layout: elk
|
||||
elk:
|
||||
nodePlacementStrategy: SIMPLE
|
||||
---
|
||||
graph TB
|
||||
:ui-test-hilt-manifest[ui-test-hilt-manifest]:::android-library
|
||||
|
||||
classDef android-application fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef android-test fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef jvm fill:#7F52FF,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
classDef unknown fill:#FF0000,stroke:#fff,stroke-width:2px,color:#fff;
|
||||
```
|
||||
<!--endregion-->
|
Loading…
Reference in new issue