• Stars
    star
    294
  • Rank 141,303 (Top 3 %)
  • Language
    Kotlin
  • License
    MIT License
  • Created over 4 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

This is a sample movie list Android application built to demonstrate use of Clean Architecture tools. Dedicated to all Android Developers - (Kotlin, MVVM, Clean Architecture, Rx-Java, Dagger, OkHttp, Unit Testing, SOLID principles, Code Coverage)

Android Clean Architecture

Codacy Badge platform Android CI GitHub license Github Followers GitHub stars GitHub forks GitHub watchers Twitter Follow

This is a sample movie list Android application 📱 built to demonstrate use of Clean Architecture tools. Dedicated to all Android Developers with ❤️.

You can Install and test latest app from below 👇

Clean Architecture App

- How to build on your environment

Add your API key in local.properties file.

tmdb_api_key = YOUR_API_KEY

If you don't have tmdb api key you can create new key from here.

- About

It simply loads Popular Movies list from TMDB-API and stores it in persistence storage (i.e. Room Database). Movies list will be always loaded from local database. Remote data (from API) and Local data is always synchronized. It has feature of bookmark movie which will be stored locally.

  • Modular approch followed
  • It is heavily implemented by following standard clean architecture principle.
  • Offline capability.
  • It has cache expiration feature [5 minutes].
  • Unit testing written for all layers.
  • Multi Module Code Coverage reports using Jacoco.
  • static code analyses added by using detekt, ktlint.
  • Android CI github action integration.
  • S.O.L.I.D priciple followed for more understandable, flexible and maintainable.

- Disclaimer

Note: The use of clean architecture may seem over-complicated for this sample project. However, this allows us to keep the amount of boilerplate code to a minimum and also demonstrate the approach in a simpler form.

Clean Architecture will not be appropriate for every project, so it is down to you to decide whether or not it fits your needs 🙂

- Built With 🛠

  • Kotlin - First class and official programming language for Android development.
  • Rx-Java - For composing asynchronous and event-based programs by using observable sequences.
  • Android Architecture Components - Collection of libraries that help you design robust, testable, and maintainable apps.
    • LiveData - Data objects that notify views when the underlying database changes.
    • ViewModel - Stores UI-related data that isn't destroyed on UI changes.
    • Room - SQLite object mapping library.
  • Dagger 2 - Dependency Injection Framework
  • Retrofit - A type-safe HTTP client for Android and Java.
  • OkHttp - HTTP client that's efficient by default: HTTP/2 support allows all requests to the same host to share a socket
  • Glide - image loading framework for Android
  • Gson - used to convert Java Objects into their JSON representation and vice versa.
  • Mockito - Most popular mocking framework for Java/kotlin.
  • Robolectric - allows you to write unit tests and run them on a desktop JVM while still using Android API.
  • Stetho - Stetho is a debug bridge for Android applications, enabling the powerful Chrome Developer Tools and much more.
  • Detekt - Detekt is a static analyze tool for the Kotlin language. It's open source.
  • Ktlint -Ktlint is a static code analysis tool maintain by Pinterest. Linter and formatter for Kotlin code.

- Clean Architecture

- photo by: raywenderlich

What is clean architecture?

Architecture means the overall design of the project. It's the organization of the code into classes or files or components or modules. And it's how all these groups of code relate to each other. The architecture defines where the application performs its core functionality and how that functionality interacts with things like the database and the user interface.

Why the cleaner approach?

  1. Separation of code in different layers with assigned responsibilities making it easier for further modification.
  2. High level of abstraction
  3. Loose coupling between the code
  4. Testing of code is painless

Clean code always looks like it was written by someone who cares. - by Michael Feathers”

Layers

  • Domain - Would execute business logic which is independent of any layer and is just a pure kotlin/java package with no android specific dependency.
  • Data - Would dispense the required data for the application to the domain layer by implementing interface exposed by the domain.
  • Presentation / framework - Would include both domain and data layer and is android specific which executes the UI logic.

- Modules of App

App

It uses the all the components and class releated to Android Framework. It gets the data from presentation layer and shows on UI.

BuildSrc

This module helps to list and manage all the dependencies of the app at one place. It has list of dependencies and versions of that dependencies.

Data

The Data layer is our access point to external data layers and is used to fetch data from multiple sources (the cache and remote in our case).

Cache

The Cache layer handles all communication with the local database which is used to cache data.

Domain

The domain layer responsibility is to simply contain the UseCase instance used to retrieve data from the Data layer and pass it onto the Presentation layer.

Presentation

This layer's responsibility is to handle the presentation of the User Interface, but at the same time knows nothing about the user interface itself. This layer has no dependence on the Android Framework, it is a pure Kotlin module. Each ViewModel class that is created implements the ViewModel class found within the Architecture components library. This ViewModel can then be used by the UI layer to communicate with UseCases and retrieve data.

Remote

The Remote layer handles all communications with remote sources, in our case it makes a simple API call using a Retrofit interface.

- Code Coverage Reports

This projects uses jacoco plugin for generate code coverage reports. currently each modules generates seprate code reports.

Java/Kotlin Modules

Use ./gradlew jacocoTestReport

Reports location for each module-
-/data/build/reports/jacoco/test/html/index.html
-/domain/build/reports/jacoco/test/html/index.html
-/remote/build/reports/jacoco/test/html/index.html

Android Modules

Use ./gradlew jacocoTestReportDebug

Reports location for each module-
-/app/build/reports/jacoco/debug/index.html
-/cache/build/reports/jacoco/debug/index.html
-/presentattion/build/reports/jacoco/debug/index.html

- Code Quality Checks

This projects uses detekt, ktlint static code analyser and auto formatter in CI/CD pipeline to maintain code quality. they also genrated reports.

Run detekt locally

Use ./gradlew detekt

Reports location for each module-
-/cache/build/reports/detekt/report.html
-/domain/build/reports/detekt/report.html
-/remote/build/reports/detekt/report.html

Run ktlint locally

Use ./gradlew ktlint

Reports location for each module-
-/app/build/reports/ktlint/ktlint-checkstyle-report.xml
-/cache/build/reports/ktlint/ktlint-checkstyle-report.xml
-/presentattion/build/reports/ktlint/ktlint-checkstyle-report.xml

Run ktlint formatter locally

Use ./gradlew ktlintFormat

- Current App's Architecture

This app uses MVVM (Model View View-Model) architecture.

- Future Plans

  1. Add another features, Showing the crew and cast list for a movie.
  2. Instrumentation test cases to be added.
  3. Merge all code covergae reports at single place.
  4. MvRx implementaion on the UI layer.
  5. MVI implementation on the UI layer.
  6. Reach code coverage atleast 80%.
  7. Dark Mode theme etc.

- Thanks

A special thanks to the authors involved with this repository, they were a great resource during our learning!

If this project helps you in anyway, show your love ❤️ by putting a ⭐ on this project ✌️

- Contributing

Please fork this repository and contribute back using pull requests.

Any contributions, large or small, major features, bug fixes, are welcomed and appreciated but will be thoroughly reviewed .

- Contact - Let's become friend

- License

MIT License

Copyright (c) 2020 Happy Singh

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.```

More Repositories

1

CameraX-FaceDetection-MlKit

This is a sample app built to demonstrate the use of MLKit Face detection. Dedicated to all Android Developers with heart.
Kotlin
59
star
2

HappyTimer

This is an android lib which helps you to implement Timer in your android app. This is 100% written in Kotlin.
Kotlin
51
star
3

Qr-Code-Scanner-

This is simple QR code scanner with Room Database. 100% written in Kotlin.
Kotlin
26
star
4

android-github-repo-template

A template for creating new repositories for the new Android Project.
Kotlin
19
star
5

HappyChat

This Is A Chat Android Application Based On The FireBase Real Time DataBase.
Java
7
star
6

Dagger-2-Showcase

This project implements the dagger 2 for dependency injection
Kotlin
6
star
7

SOLID-principles-java-example

This repository contains the real simple examples of how should we use and accept the SOLID principle in our daily coding
Java
6
star
8

Multimodule-android-showcase

Kotlin
5
star
9

TrueWebScraper

this is a sample Android application built to demonstrate the use of Web Scraping in Android apps.
Kotlin
4
star
10

Github-API-s-Sample-Android-app

This is a sample GitHub Repos and pr listing Android application built to demonstrate the use of Clean Architecture tools. Dedicated to all Android Developers - (Kotlin, MVVM, Clean Architecture, Rx-Java, Dagger, OkHttp, SOLID principles)
Kotlin
4
star
11

Node-js-postgreSQL-Playground-

Playground to have fun with backend.
JavaScript
3
star
12

Multilevel-Treeview-Implementation-Android-

This is the implementation of treeview using Treeview Library Android. I am Using Json to show level of agents and picking up their id's.
Java
3
star
13

Android-College-Noticeboard

Java
3
star
14

TextLocal-Android-Send-SMS-With-Rest-API-Example

This is example of Sending SMS using Rest API of TextLocal . Code is written in Kotlin and Used MVVM Pattern
Kotlin
3
star
15

SoundCast-Music-App

A Short Use of MVP
Kotlin
2
star
16

Android-Server-Driven-UI-Epoxy

Kotlin
2
star
17

Ultimate-FireBase-Learning-AndroidChef

All the branches of this repository are having concepts of FireBase Android
Java
2
star
18

Android-Core-Topics

Self - Learning - Repositary
Kotlin
2
star
19

Volley-Tutorial-Androchef

This is Complete reference for Using Volley for networking in Android.
Java
2
star
20

InternshipTask

HTML
1
star
21

happysingh23828

1
star
22

Competitive-Programming-Kotlin

Repository for listing my all Competitive-Programming files
Kotlin
1
star
23

SAGY-Android-Application

This Is an Android Application For Sansad Adrash Gram Yojana
Java
1
star
24

Rx-Java-Youtube-Series

Kotlin
1
star
25

Retrofit-Tutorial-AndroChef

This is example of Using Retrofit networking library for consuming API calls in Android
Java
1
star