Skip to content

v0.5.0

Compare
Choose a tag to compare
@kotlitecture kotlitecture released this 30 Jun 18:37
· 5 commits to master since this release
d3f9334

Changes

In keeping with the best traditions of the KMP team, everything has been changed:

  • Updated packages structure in app module to follow standard layout with domain/data/presentation structure.
app
├── domain
├── data
│   ├── source
│   └── repository
├── presentation
│   ├── theme
│   ├── navigation
│   ├── loader
│   ├── app
│   └── feature...
├── di
│   ├── data
│   └── presentation
  • Renamed some classes, specific for DI configuration (previously it was ProvidesSomething, now it is SomethingModule.
  • Moved ViewModelFactory of app layer to DI package as it is mostly based on injections from DI.
  • Updated documentation to be aligned with the changes 💀.