Coder Social home page Coder Social logo

dawindergill / musicplayer-jetpackcompose Goto Github PK

View Code? Open in Web Editor NEW
33.0 1.0 5.0 14.21 MB

Sample Android Clean Architecture on Music Player App focused on the scalability, testability and maintainability written in Kotlin, following best practices using Jetpack with Compose.

Home Page: https://medium.com/@dawinderapps/music-player-in-jetpack-compose-with-media3-exoplayer-ebbd7e58811b

Kotlin 100.00%
builder-pattern dagger-hilt exoplayer-kotlin glide-library hilt-dependency-injection jetpack-android jetpack-compose kotlin kotlin-coroutines kotlin-dsl

musicplayer-jetpackcompose's Introduction

CodeStyle Compose Kotlin Dagger Hilt Android API License Apache 2.0

Jetpack Compose Music Player

Android Clean Architecture in this sample project presents a modern, approach to Android application development using Kotlin and the latest tech stack.

The goal of the project is to demonstrate best practices, provide a set of guidelines, and present modern Android application architecture that is modular, scalable, maintainable, and testable. This application may look simple, but it has all of these small details that will set the rock-solid foundation of the larger app suitable for bigger teams and long application lifecycle management.

A few key concepts and technologies form the cornerstone of this project:

  • Jetpack Compose: This is the next-generation UI toolkit for Android applications, allowing you to build interfaces through declarative UI patterns, thereby reducing the boilerplate code and helping to bring your app to life more quickly.
  • Recomposition: In the context of Jetpack Compose, recomposition is the process by which the Compose framework updates your composable functions when the data they read changes, ensuring your UI is always up-to-date​.
  • Managing States: This project demonstrates the appropriate handling of states in a composable function in Jetpack Compose. This is crucial for building dynamic and interactive UIs that can respond to changes in data over time.
  • Kotlin DSL and Gradle: The Kotlin DSL provides a type-safe and expressive way to model your project using Kotlin. This project uses Kotlin DSL for Gradle, which allows for writing Gradle build scripts in a more expressive and convenient way, leveraging Kotlin's features such as type-safety, null-safety, and IDE support.
  • Centralizing Dependencies: To maintain a clean and manageable build system, this project centralizes its dependencies in a single location, making it easy to manage and update the dependencies across modules​ using buildSrc + Kotlin DSL.

🖼️ Music Player Demo

🌳 Environment

Android Studio verison used : Android Studio Giraffe | 2022.3.1 Beta

🏗️ Architecture

A well-planned architecture is extremely important for an app to scale and all architectures have one common goal- to manage the complexity of your app. This isn't something to be worried about in smaller apps however it may prove very useful when working on apps with longer development lifecycles and a bigger team. I have followed MVVM and Jetpack MVVM architecture in this project.

Why Clean Architecture?

  • Loose coupling between the code - The code can easily be modified without affecting any or a large part of the app's codebase thus easier to scale the application later on.
  • Easier to test code.
  • Separation of Concern - Different modules have specific responsibilities making it easier for modification and maintenance.

S.O.L.I.D Principles

  • Single Responsibility: Each software component should have only one reason to change – one responsibility.
  • Open-Closed: You should be able to extend the behavior of a component, without breaking its usage or modifying its extensions.
  • Liskov Substitution: If you have a class of one type and any subclasses of that class, you should be able to represent the base class usage with the subclass, without breaking the app.
  • Interface Segregation: It’s better to have many smaller interfaces than a large one, to prevent the class from implementing the methods that it doesn’t need.
  • Dependency Inversion: Components should depend on abstractions rather than concrete implementations. Also, higher-level modules shouldn’t depend on lower-level modules.

Layers

Project Structure

Project Structure

BuildSrc Module

The buildSrc layer is responsible for dependency management. It controls and manages all dependencies in one place with Kotlin. Check my story on medium if you want to learn about this in detail.

App Module

This module contains all the application relates classes, divided into different packages based on their responsibilities.

  • di: This package handles Dependency Injection in your project. It includes classes like AppModule and DataModule, which are used to provide instances of your dependencies to the parts of your app that need them. This helps to separate the responsibility of creating and managing dependencies from the classes that use them.
  • models: The Track class in this package is the main model for your tracks. This model encapsulates the data associated with a track and any behavior that directly relates to this data. This maintains a separation of concerns by keeping the data and behavior related to tracks in a dedicated place.
  • player: This package includes classes related to the music player functionality of your app, such as MyPlayer, PlayBackState, PlayerEvents, and PlayerStates. These classes handle all the logic related to playing music, including managing the playback state and handling player events. This helps to separate the music-playing functionality from other aspects of your app.
  • repositories: This package contains the TrackRepository and TrackRepositoryImpl, which are responsible for providing track data. Repositories act as a sort of "middleman" between your data sources (like a database or network API) and the rest of your app. This helps to separate the responsibility of data management from the classes that use the data.
  • ui: This package contains all the user interface code for your app, divided into sub-packages like activities, composables, and theme. This separation of concerns makes it easier to manage your UI code and keeps it separate from your data and business logic.
  • utils: This package typically contains utility classes and functions that provide common functionality needed in various places in your app. By placing these utilities in their own package, you can keep them separate from your main app code and make them easier to find and use.
  • viewmodels: The HomeViewModel in this package controls the states of your composables. In the MVVM (Model-View-ViewModel) architecture, the ViewModel is responsible for preparing and managing the data for the UI and handling user interactions. This helps to separate the UI logic from the business logic and makes your UI easier to test.

By dividing your code into these packages, you're following the principle of separation of concerns. Each part of your code has a specific responsibility, and it's clear where to find and modify the code for each of these responsibilities. This makes your code easier to understand, test, and maintain.

💻 Tech Stacks

This project uses many of the popular libraries, plugins, and tools of the android ecosystem.

  • Jetpack Compose - Jetpack Compose is Android’s recommended modern toolkit for building native UI. It simplifies and accelerates UI development on Android. Quickly bring your app to life with less code, powerful tools, and intuitive Kotlin APIs.

  • Material3 - Build Jetpack Compose UIs with ready-to-use Material Design Components.

  • Foundation - Write Jetpack Compose applications with ready-to-use building blocks and extend foundation to build your own design system pieces.

  • UI - Fundamental components of compose UI needed to interact with the device, including layout, drawing, and input.

  • ModalBottomSheetLayout - We can call this BottomSheetDialog of Jetpack Compose.

  • Android KTX - Provide concise, idiomatic Kotlin to Jetpack and Android platform APIs.

  • AndroidX - Major improvement to the original Android Support Library, which is no longer maintained.

  • Lifecycle - Perform actions in response to a change in the lifecycle status of another component, such as activities and fragments.

  • ViewModel - Designed to store and manage UI-related data in a lifecycle-conscious way. The ViewModel class allows data to survive configuration changes such as screen rotations.

  • Media3 ExoPlayer - A media player is an app-level component that allows playback of video and audio files. Such files can be stored locally or streamed over the Internet. Jetpack Media3 provides a Player interface that defines basic functionality such as the ability to play, pause, seek, and display track information.

  • Compose Lottie - Lottie is a mobile library for Android and iOS that parses Adobe After Effects animations exported as json with Bodymovin and renders them natively on mobile!

  • Compose Glide - An image loading library to load images, downsampling, and cache without any memory leak.

  • Dagger Hilt - Hilt is a dependency injection library for Android that reduces the boilerplate of doing manual dependency injection in your project.

  • Coroutines - A coroutine is a concurrency design pattern that you can use on Android to simplify code that executes asynchronously.

  • Flow - Flows are built on top of coroutines and can provide multiple values. A flow is conceptually a stream of data that can be computed asynchronously.

  • Google-KSP - Kotlin Symbol Processing (KSP) is an API for building lightweight compiler plugins in Kotlin, enabling powerful tooling capabilities such as custom lint checks, code generation, and more.

  • Gradle Kotlin DSL - It makes it easy to manage dependency on all modules that we have.

🔧 How to use

  1. Clone this repository to your machine.
  2. Open Android Studio and import the project.
  3. Navigate to local.properties file and add the BASE_URL key with your server URL for the music files.
  4. Add your tracks in repositories>TrackRepositoryImpl under createTracks() method.
  5. Build and run the project.

🤝 Contributing

Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

Note: Please note that while this project focuses primarily on the use of Jetpack Compose, it does not currently incorporate the use of foreground services for playing music in the background. This is an area where contributions would be particularly valuable, as foreground services are recommended for such functionality in Android development.

If you would like to contribute, please follow these steps:

  1. Open an issue first to discuss what you would like to change.
  2. Fork the Project
  3. Create your feature branch (git checkout -b feature/amazing-feature)
  4. Commit your changes (git commit -m 'Add some amazing feature')
  5. Push to the branch (git push origin feature/amazing-feature)
  6. Open a pull request

Please make sure to update tests as appropriate.

✍️ Author

👤 DawinderGill

Linkedin Google Play Medium

Feel free to ping me 😉

📝 License

Copyright © 2023 - DawinderGill

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

musicplayer-jetpackcompose's People

Contributors

dawindergill avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.