All Projects → andremion → Theatre

andremion / Theatre

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

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Theatre

Weatherapp
5 Day Forecast app that works on Android and uses latest tools (Kotlin, Navigation, Room, LiveData, Databinding, Dagger 2)
Stars: ✭ 426 (-26.17%)
Mutual labels:  rxkotlin, dagger2, mvvm, clean-architecture, viewmodel, android-architecture-components
flickr-android
A small sample app to showcase architecting app using Clean Architecture and MVVM
Stars: ✭ 25 (-95.67%)
Mutual labels:  data-binding, clean-architecture, dagger2, rxjava2, dagger2-android
Mvvmarms
Android MVVM Architecture Components based on MVPArms and Android Architecture Components.
Stars: ✭ 425 (-26.34%)
Mutual labels:  rxjava2, dagger2, mvvm, viewmodel, dagger2-android
modern-android
Modern Android Project Skeleton
Stars: ✭ 17 (-97.05%)
Mutual labels:  mvvm, clean-architecture, viewmodel, rxkotlin
UTair-MVP-Sample
Android Clean Architecture + MVP Sample written in Kotlin
Stars: ✭ 27 (-95.32%)
Mutual labels:  dagger, clean-architecture, dagger2, rxjava2
Roomrxjava
Room with Rxjava Example
Stars: ✭ 130 (-77.47%)
Mutual labels:  rxjava2, dagger2, viewmodel, dagger2-android
CleanArchitecture-SocketIO
CleanArchitecture with SocketIo 📡
Stars: ✭ 32 (-94.45%)
Mutual labels:  clean-architecture, dagger2, rxjava2, dagger2-android
Kriptofolio
Free open source minimalistic cryptocurrencies portfolio app for Android.
Stars: ✭ 79 (-86.31%)
Mutual labels:  dagger, data-binding, viewmodel, android-architecture-components
AndroidCleanArchitecture
Android Project with clean android architecture contain Dagger, Retrofit, Retrofit, Android archtecture components, LiveData with MVVM architecture
Stars: ✭ 22 (-96.19%)
Mutual labels:  dagger2, rxjava2, android-architecture-components, dagger2-android
paybill-manager
Your personal finance manager
Stars: ✭ 46 (-92.03%)
Mutual labels:  mvvm, clean-architecture, dagger2, dagger2-android
AndroidMVPArchitecture
Android MVP architecture sample project with or without RxJava and Dagger2 and Kotlin
Stars: ✭ 78 (-86.48%)
Mutual labels:  dagger, data-binding, dagger2, dagger2-android
Applocker
🔐 Open source app locker, vault, call blocker application
Stars: ✭ 321 (-44.37%)
Mutual labels:  rxjava2, dagger2, mvvm, dagger
searchi
Demo of PagedListAdapter, PageKeyedDataSource, LiveData, ViewModel in Kotlin
Stars: ✭ 13 (-97.75%)
Mutual labels:  dagger, dagger2, rxjava2, viewmodel
RestaurantsExplorer
Android application build with MVVM Pattern, using Zomato API to enable search cities arround the world and display the city restaurants on a map.
Stars: ✭ 32 (-94.45%)
Mutual labels:  dagger, rxjava2, viewmodel, android-architecture-components
Tdcapp
Sample app which access the TDC (The Developer's Conference) REST API.
Stars: ✭ 55 (-90.47%)
Mutual labels:  rxjava2, mvvm, clean-architecture, viewmodel
Business Search App Java
Showcases object oriented programming in Java, Java Swing, Kotlin, and Android
Stars: ✭ 53 (-90.81%)
Mutual labels:  rxjava2, dagger2, mvvm, clean-architecture
Githubprojectbrowser
This is a sample Android Project that is based on Clean Architecture
Stars: ✭ 64 (-88.91%)
Mutual labels:  rxkotlin, dagger2, clean-architecture, viewmodel
Base Mvvm
App built to showcase basic Android View components like ViewPager, RecyclerView(homogeneous and heterogeneous items), NavigationDrawer, Animated Vector Drawables, Collapsing Toolbar Layout etc. housed in a MVVM architecture
Stars: ✭ 18 (-96.88%)
Mutual labels:  rxjava2, dagger2, mvvm, viewmodel
GithubApp-android-architecture
Let's learn a deep look at the Android architecture
Stars: ✭ 16 (-97.23%)
Mutual labels:  clean-architecture, dagger2, rxjava2, viewmodel
MVPArchitecture
Android MVP architecture in Kotlin using Dagger2, RxJava2, Retrofit2 and so on
Stars: ✭ 27 (-95.32%)
Mutual labels:  clean-architecture, dagger2, rxjava2, rxkotlin
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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].