All Projects → MindorksOpenSource → Android Kotlin Mvp Architecture

MindorksOpenSource / Android Kotlin Mvp Architecture

Licence: apache-2.0
This repository contains a detailed sample app that implements MVP architecture in Kotlin using Dagger2, Room, RxJava2, FastAndroidNetworking and PlaceholderView

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Android Kotlin Mvp Architecture

Android Mvp Architecture
This repository contains a detailed sample app that implements MVP architecture using Dagger2, GreenDao, RxJava2, FastAndroidNetworking and PlaceholderView
Stars: ✭ 4,360 (+608.94%)
Mutual labels:  rxjava, rxjava2, rxjava-android, dagger2, mvp, mvp-architecture
mvp-android-template
MVP Android Template to give you a Quick Head Start for your next Android Project. It implements MVP Architecture using Dagger2, Room, RxJava2 , Retrofit2
Stars: ✭ 20 (-96.75%)
Mutual labels:  room, mvp, dagger2, rxjava2, mvp-architecture, mvp-android
Mvpframes
整合大量主流开源项目并且可高度配置化的 Android MVP 快速集成框架,支持 AndroidX
Stars: ✭ 100 (-83.74%)
Mutual labels:  rxjava, rxjava2, rxjava-android, dagger2, mvp, mvp-android
Armscomponent
📦 A complete android componentization solution, powered by MVPArms (MVPArms 官方快速组件化方案).
Stars: ✭ 1,664 (+170.57%)
Mutual labels:  rxjava2, dagger2, mvp, mvp-architecture, mvp-android
android-template
Template for android development at Tiki
Stars: ✭ 17 (-97.24%)
Mutual labels:  mvp, dagger2, rxjava2, mvp-architecture, mvp-android
Bigbang
Android base project used by Xmartlabs team
Stars: ✭ 47 (-92.36%)
Mutual labels:  rxjava, rxjava2, database, dagger2, mvp
Android tmdb clean architecture
Showcase of clean architecture concepts along with Continuous Integration and Development for modular Android applications. Includes test suits (functional and unit tests) along with code coverage.
Stars: ✭ 63 (-89.76%)
Mutual labels:  rxjava, dagger2, mvp, room, mvp-android
Mvpandroid
Sample app to demonstrate MVP (Model - View - Presenter) architecture in android
Stars: ✭ 91 (-85.2%)
Mutual labels:  rxjava, dagger2, mvp, mvp-architecture, mvp-android
Mvparms
⚔️ A common architecture for Android applications developing based on MVP, integrates many open source projects, to make your developing quicker and easier (一个整合了大量主流开源项目高度可配置化的 Android MVP 快速集成框架).
Stars: ✭ 10,146 (+1549.76%)
Mutual labels:  rxjava, dagger2, mvp, mvp-architecture, mvp-android
Kotlinrxmvparchitecture
Clean MVP Architecture with RxJava + Dagger2 + Retrofit2 + Mockito + Fresco + EasiestGenericRecyclerAdapter using Kotlin. Includes Unit Tests(Kotlin Tests)!
Stars: ✭ 94 (-84.72%)
Mutual labels:  rxjava, dagger2, mvp, mvp-architecture, mvp-android
Androidbasemvp
🚀一个快速搭建MVP+RxJava2+Retrofit 基础框架,主要是封装有Http网络请求、日志、缓存、加载等待、toast、页面状态布局管理、权限、RxBus、Glide图片加载等组件,方便快速开发新项目、减少开发成本。
Stars: ✭ 184 (-70.08%)
Mutual labels:  rxjava, rxjava2, mvp, mvp-architecture, mvp-android
Android Clean Architecture Boilerplate
Apply clean architecture on Android
Stars: ✭ 141 (-77.07%)
Mutual labels:  rxjava, rxjava2, mvp, mvp-architecture, mvp-android
Android Mvvm Architecture
This repository contains a detailed sample app that implements MVVM architecture using Dagger2, Room, RxJava2, FastAndroidNetworking and PlaceholderView
Stars: ✭ 2,720 (+342.28%)
Mutual labels:  rxjava, rxjava2, database, dagger2, room
BakingApp
Udacity Android Developer Nanodegree, project 2.
Stars: ✭ 54 (-91.22%)
Mutual labels:  dagger2, rxjava2, mvp-architecture, mvp-android
Weather-Guru-MVP
Sample Material-design Android weather application build with MVP architectural approach using Dagger2, RxJava2, Retrofit2, Event-Bus, GreenDao, Butterknife, Lottie etc.
Stars: ✭ 15 (-97.56%)
Mutual labels:  mvp, dagger2, rxjava2, mvp-architecture
Geeknews
📚A pure reading App based on Material Design + MVP + RxJava2 + Retrofit + Dagger2 + Realm + Glide
Stars: ✭ 3,496 (+468.46%)
Mutual labels:  rxjava, dagger2, mvp-architecture, mvp-android
wikilight
A lightweight Wikipedia Client
Stars: ✭ 50 (-91.87%)
Mutual labels:  mvp, dagger2, mvp-architecture, mvp-android
Fineract-CN-mobile
DEPRECATED project - Check the Apache fineract-cn-mobile project instead
Stars: ✭ 17 (-97.24%)
Mutual labels:  rxjava, mvp, dagger2, mvp-architecture
android-online-course
Android Online Course
Stars: ✭ 22 (-96.42%)
Mutual labels:  rxjava, dagger2, rxjava2, rxjava-android
Android-Starter-Kit
This is up-to-date android studio project for native android application, that is using modern tools and libraries.
Stars: ✭ 16 (-97.4%)
Mutual labels:  mvp, dagger2, rxjava2, mvp-android

Android Kotlin MVP Architecture: Sample App

Mindorks Mindorks Community

This repository contains a detailed sample app that implements MVP architecture in Kotlin using Dagger2, Room, RxJava, FastAndroidNetworking, PlaceHolderView and AndroidDebugDatabase




Architecture Blueprint

Blueprint

Project Structure

Structure

Read the below listed articles. They describe the MVP concepts and the Project structure.

  1. MVP: Part 1
  2. MVP: Part 2
  3. MVP: Part 3
  4. Extension with Interactors and Repositories

The app has following packages:

  1. data: It contains all the data accessing and manipulating components.
  2. di: Dependency providing classes using Dagger2.
  3. ui: View classes along with their corresponding Presenters.
  4. utils: Utility classes.

Classes have been designed in such a way that it could be inherited and maximize the code reuse.

Library reference resources:

  1. RxJava2: https://github.com/amitshekhariitbhu/RxJava2-Android-Samples
  2. Dagger2: https://github.com/MindorksOpenSource/android-dagger2-example
  3. FastAndroidNetworking: https://github.com/amitshekhariitbhu/Fast-Android-Networking
  4. PlaceHolderView: https://github.com/janishar/PlaceHolderView
  5. AndroidDebugDatabase: https://github.com/amitshekhariitbhu/Android-Debug-Database
  6. Calligraphy: https://github.com/chrisjenx/Calligraphy
  7. Room: https://developer.android.com/topic/libraries/architecture/room.html
  8. ButterKnife: http://jakewharton.github.io/butterknife/

Concept reference resources:

  1. Introduction to Dagger 2: Part 1
  2. Introduction to Dagger 2: Part 2
  3. Android Dagger2: Critical things to know before you implement
  4. The Best Android Networking Library for Fast and Easy Networking
  5. RxJava + Fast Android Networking
  6. Migrating from RxJava 1.0 to RxJava 2.0 and Learn RxJava by Examples
  7. Android Tinder Swipe View Example
  8. Debugging Android Databases And Shared Preferences In The Easiest Way
  9. RxJava Anatomy: What is RxJava, how RxJava is designed, and how RxJava works.

Looking for MVVM Architecture for Beginners - Check here

Looking for MVVM Architecture - Check here

Learn to build a ride-sharing Android app like Uber, Lyft - Check here

Mindorks open source projects

Check out Mindorks awesome open source projects here

License

   Copyright (C) 2017 MINDORKS NEXTGEN PRIVATE LIMITED

   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 to Android Kotlin MVP Architecture

All pull requests are welcome, make sure to follow the contribution guidelines when you submit pull request.

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].