Skip to content

TheAlisher/Boilerplate-Android

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1312994 · May 4, 2025
Aug 22, 2024
Nov 1, 2024
Sep 29, 2024
Sep 29, 2024
Jan 27, 2025
May 4, 2025
May 1, 2024
Sep 2, 2024
Mar 14, 2022
May 4, 2025
May 30, 2024
Aug 13, 2024
Feb 14, 2021
Feb 14, 2021
May 4, 2025

Repository files navigation

Boilerplate-Android

Разбор проекта разделен на серию статей:


Loading
%%{
  init: {
    'theme': 'dark'
  }
}%%

graph LR
  subgraph :core
    :core:data["data"]
    :core:domain["domain"]
    :core:presentation["presentation"]
  end
  subgraph :feature
    :feature:foo["foo"]
    :feature:bar["bar"]
  end
  :core:data --> :core:domain
  :core:presentation --> :core:domain
  :db --> :core:data
  :db --> :feature:foo
  :db --> :feature:bar
  :feature:bar --> :core:data
  :feature:bar --> :core:presentation
  :app --> :core:presentation
  :app --> :db
  :app --> :feature:foo
  :app --> :feature:bar
  :feature:foo --> :core:data
  :feature:foo --> :core:presentation

classDef android-library fill:#3BD482,stroke:#fff,stroke-width:2px,color:#fff;
classDef kotlin-jvm fill:#8150FF,stroke:#fff,stroke-width:2px,color:#fff;
classDef android-application fill:#2C4162,stroke:#fff,stroke-width:2px,color:#fff;
class :core:data android-library
class :core:domain kotlin-jvm
class :core:presentation android-library
class :db android-library
class :feature:foo android-library
class :feature:bar android-library
class :app android-application