View on GitHub

Android-Clean-Architecture

๐ŸŽž A demo movie android app showcasing Clean Architecture, written in Kotlin and featuring Jetpack Compose for modern, declarative UIs. (Offline-first App)

Android Clean Architecture Codacy Badge

A demo movie android app showcasing Clean Architecture, written in Kotlin and featuring Jetpack Compose for modern, declarative UIs. ๐Ÿ’ฏ๐ŸŽž

image

Features

  1. Offline-first: The app can be accessed even without an internet connection.
  2. Pagination: Efficiently loads large amounts of data to improve the user experience.
  3. Search functionality: Allows users to quickly find specific information within the app.
  4. Auto Sync: Uses both NetworkConnectivityStream and WorkManager to ensure data is always up-to-date.
  5. Favorites: Users can add movies to a favorites list.

Previous Versions

The Motivation behind the app

This repository was created with the intention of sharing knowledge, stepping outside of my comfort zone, and using it to implement new challenges and ideas.

Movies Mock Server API

API: Movies Mock Server

This API is the primary data source for the app, providing a mock database of movie information. It is designed to mimic real-world data operations including fetching, updating, and managing movie data.

API Repository: Movies Mock Server Repository

This repository hosts the source code and documentation for the Movies Mock Server API

๐Ÿ’ก Architectural Insights

Architecture by its nature is dynamic and ever-evolving, there are always several solutions to every problem, and what works best will depend on the specific requirements and constraints of your project.

image

Screenshots

image

Clean Architecture

The core principles of the clean approach can be summarized as followed:

1. The application code is separated into layers.

These layers define the separation of concerns inside the code base.

2. The layers follow a strict dependency rule.

Each layer can only interact with the layers below it.

3. As we move toward the bottom layer โ€” the code becomes generic.

The bottom layers dictate policies and rules, and the upper layers dictate implementation details such as the database, networking manager, and UI.

Architecture Layers

The application consists of three layers:

The domain layer, the data layer, and the presentation layer.

Looking at projectโ€™s high-level structure, youโ€™ll see that each layer is represented by a module in the project.

image

I like it because it helps me avoid accidentals โ€œleaksโ€ between the layers.

Structure

Built With ๐Ÿ› 

๐Ÿ’Ž Code Style

The code style in this project was ensured using Detekt.

Check command:

./gradlew detekt

License

   Copyright (C) 2020 Ali Asadi
   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.

Contributing

Just make pull request. You are in!