• Stars
    star
    640
  • Rank 70,324 (Top 2 %)
  • Language
    Kotlin
  • License
    Apache License 2.0
  • Created over 6 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

Pet project using Clean Architecture + MVVM + Reactive Extensions + Android Architecture Components. The data are fetched from LondonTheatreDirect API. 🎭

Icon

Theatre

Pet project using Clean Architecture + MVVM + Reactive Extensions + Android Architecture Components.
The data is fetched from LondonTheatreDirect API.

The main purpose is using the latest practices and libraries.


License Apache 2.0 minSdkVersion 16 compileSdkVersion 27 CircleCI codecov

Sample
*Data from London Theatre Direct
**UI inspired by Yaroslav Zubko's design

Architecture

Uses concepts of the notorious Uncle Bob's architecture called Clean Architecture.
The software produced by this architecture is going to be:

  • Independent of Frameworks.
  • Testable.
  • Independent of UI.
  • Independent of Database.

Clean

The Dependency Rule

The overriding rule of this architecture says that the source code dependencies always point inwards.
The outer tiers can only dependent of inner tiers. Therefore, the inner tiers know nothing about the outer tiers.
The more further you go through the concentric circles, the higher level the software becomes. Which means that the level of abstraction increases.

Entities

An entity is a set of data structures. These entities are the business objects of the application and encapsulate the most general and high-level rules, such as Event or Rating.

Use Cases

They are the operations of the application and may contain specific business rules.
This layer is isolated from database, UI, or any of the common frameworks.
All use case classes extends UseCase abstract class that sets up the schedulers of Reactive Extensions.

Adapters

It is a set of adapters that convert data from the format most convenient for the use cases and entities, to the format most convenient for some external agency such as the UI or Database.
It is this layer that will wholly contain the ViewModels of MVVM architectural pattern.
The models are likely just data structures that are passed from the view to the use cases, and vice versa.
Similarly, data is converted, in this layer, from the form most convenient for entities and use cases, into the form most convenient for whatever persistence framework is being used.

Frameworks

The outermost layer is composed of frameworks and tools such as the Database and the Android Framework.
The Repository pattern is used to encapsulate the details about caching mechanism.

The Dependency Inversion

In order to not violate the Dependency Rule, the Dependency Inversion principle must be used whenever complex data needs to be passed across a boundary to an inward layer. Instead of expecting and directly referencing a low-level component (e.g. as a function parameter), the high-level layer provides and references an interface that must be implemented and inherited from by the caller. This way, the conventional dependency relationship is inverted and the high-level layer is decoupled from the low-level component.

Inversion of Control

The Dependency Injection

To make the application more testable and avoid having to deal with object instantiations in many points, the Dependency Injection technique is used.

Dependency injection is one form of the broader technique of inversion of control. As with other forms of inversion of control, dependency injection supports the dependency inversion principle.

Dagger is the tool used for managing and injection of our dependencies.

Modules: WIP

Modules

Data

The LondonTheatreDirect API groups the data into:

  • System API: Obtain information about enum data types.

Since the data is basically static, a Repository with database caching is used by Gateway.

  • Inventory API: Obtain realtime information about events on sale, venues, prices and availability.

Due the data volatility, it is used a Repository that caches in memory.

Data

Presentation: WIP

Presentation

Credentials

Register your account here to get your developer key and put it into gradle.properties file

References

  • Android Clean Architecture Sample app that is part of a series of blog posts about how to architect an android application using Uncle Bob's clean architecture approach.
  • Android Architecture Blueprints Demonstrate possible ways to help with testing, maintaining and extending of an Android app using different architectural concepts and tools.

Libraries and tools used in the project

Android

  • Android Support Library Provides additional convenience classes and features not available in the standard Framework API for easier development and support across more devices.
  • Data Binding Write declarative layouts and minimize the glue code necessary to bind application logic and layouts.
  • Android KTX A set of Kotlin extensions for Android app development.

Architecture and Design

  • Android Architecture Components A collection of libraries that help you design robust, testable, and maintainable apps. Start with classes for managing your UI component lifecycle and handling data persistence.
  • Dagger A fully static, compile-time dependency injection framework for both Java and Android.

Reactive

  • RX Java A library for composing asynchronous and event-based programs using observable sequences for the Java VM.
  • RX Kotlin RxJava bindings for Kotlin.
  • RX Android RxJava bindings for Android.

View and Image

  • ConstraintLayout Allows you to create large and complex layouts with a flat view hierarchy (no nested view groups).
  • RecyclerView A flexible view for providing a limited window into a large data set.
  • Glide An image loading and caching library for Android focused on smooth scrolling

Data Request

  • Retrofit A type-safe HTTP client for Android and Java.
  • OkHttp An HTTP & HTTP/2 client for Android and Java applications.
  • Moshi A modern JSON library for Android and Java.

Persistence

  • Room The Room persistence library provides an abstraction layer over SQLite to allow fluent database access while harnessing the full power of SQLite.

Debugging and tests

  • Stetho A debug bridge for Android applications.

TODO

Contributing

Contributions are always welcome!

Issues: Fell free to open a new issue. Follow the ISSUE_TEMPLATE.MD

Follow the "fork-and-pull" Git workflow.

  1. Fork the repo on GitHub
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Merge with current development branch
  5. Push your work back up to your fork
  6. Submit a Pull request your changes can be reviewed (please refere the issue if reported)

Prevent code-style related changes. Format the code before commiting.

License

Copyright 2018 André Mion

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.

More Repositories

1

Music-Player

From UI Proposal to Code 🎶▶️
Java
3,517
star
2

Floating-Navigation-View

A simple Floating Action Button that shows an anchored Navigation View
Java
1,293
star
3

CounterFab

A FloatingActionButton subclass that shows a counter badge on right top corner
Kotlin
728
star
4

Louvre

A small customizable library useful to handle an gallery image pick action built-in your app. 🌄🌠
Java
638
star
5

Music-Cover-View

Subclass of ImageView that 'morphs' into a circle shape and can rotates. Useful to be used as album cover in Music apps. 📀🎶
Java
261
star
6

UI-Motion

How to apply meaningful and delightful motion in a sample Android app
Java
168
star
7

Android-Animated-Icons

How to improve the user experience using animated icons with vector drawables on Android
Java
116
star
8

Villains-and-Heroes

Android app built with MVP architectural approach and uses Marvel Comics API that allows developers everywhere to access information about Marvel's vast library of comics. ⚡
Java
54
star
9

Scrolling-techniques-using-Android-Design-Support-Library

Como aplicar as técnicas de rolagem do Material Design usando a biblioteca de suporte Android Design Support Library
Java
22
star
10

Jobster

A proof of concept of Multiplatform Compose for Android and iOS using Google Gemini API
Kotlin
21
star
11

RetroBeat

A multiplatform music player app with the vibe of good old vinyl players, targeting Android and iOS
Kotlin
17
star
12

Bikes

A sample of Unidirectional Data Flow ♺ usage. Bike data are fetched from CityBikes API. 🚴🏻‍♂️
Kotlin
10
star
13

AndroidDevChallenge-Compose-CountdownTimer

A Simple Countdown Timer for the propose of #AndroidDev Challenge 2
Kotlin
5
star
14

Hostel

Kotlin
5
star
15

SlidingPuzzle

A Kotlin multiplatform puzzle game based on the Sliding-Puzzle problem that uses A* search algorithm to solve it
Kotlin
4
star
16

flutter_github_repos

A simple Flutter application to start playing with Flutter. This app just shows Flutter repositories on GitHub paginating by 10 repos a time.
Dart
4
star
17

Github

Kotlin
3
star
18

ProtonMail

Kotlin
2
star
19

Movie

Kotlin
2
star
20

AndroidDevChallenge-Compose-MySoothe

Kotlin
1
star
21

IMDb

Kotlin
1
star
22

AndroidDevChallenge-Compose-Weather

Kotlin
1
star
23

andremion

1
star
24

boomerang

A Unidirectional Data Flow (UDF) multiplatform library (Work in progress)
Kotlin
1
star