Jetpack-Compose-MusicPlayer-UI ? – Still under development

This is a small project I am doing to interact with and explore Jetpack Compose components.

Project Structure

1. Domain.

This layer is responsible for setting up the projects business rules. Also this is the layer that exposes the usecases around our software artifact.
Hence this tends to be the most abstracted layer of the project.

2. Data.

As the name declares, this layer is responsible for handling data that revolves our project. Following the abstraction principle, parts of this layer provide implemetations for the policies set in our domain layer.
All things to do with data transformation also happens here just to enforce the rule of crossing over boundaries.

3. Presentation(App in this case).

This layer plays host to artifacts responsible for information presentation to the user.

Tech Stack

  • Koin – A Kotlin dependency injection framework.
  • Jetpack – Tools to aid in ease when it comes to android development
  • Retrofit – Retrofit is a type-safe http client for android.
  • Coroutines – Library Support for coroutines.
  • Flow

Screenshots



GitHub

View Github