UTair-MVP-Sample icon indicating copy to clipboard operation
UTair-MVP-Sample copied to clipboard

Android Clean Architecture + MVP Sample written in Kotlin

Android Clean Architecture + MVP Sample

The sample app that demonstrates using Clean Architecture + MVP.

🏛 Project Structure

The project contains 3 modules:

  • core - contains common code for both modules
  • app-coroutines - Coroutines, Toothpick
  • app-rxjava - RxJava 2, Dagger 2

This project includes the following libraries, tools and solutions:

🌦 Open Weather API

The app uses OpenWeather API for receiving weather forecasts, so to build the project you have to provide API key. To do it create account on OpenWeather website, then generate your own API key and put it to open_weather_api_key property in api_keys.properties file.

⚠ Attention:

Clean Architecture approach recommends us to create interfaces for repositories, so domain layer shouldn't know anything about data layer. The main goal of this rule is ability to test our interactors using simple unit-tests. IMHO, it is redundant because using repositories implementation directly doesn't cause any problems.

🚦️ Tests Runnning

UI and unit-tests are contained in the app-coroutines module.

To run unit-tests, you need to setup Spek Framework plugin.

🤝 License

The MIT License

Copyright (c) 2020 Mahach Imangazaliev

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.