Skip to content

NOBLE2004/FruitApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Android MVP Base Architecture for Enterprise Mobile Application using Architectural Components

Highlights

  1. MVP Architectural pattern
  2. Offline Support sql Room
  3. Unit test demonstration using JUnit and Mockito
  4. Kotlin

The application has been built with offline support. It has been designed using Android Architecture components with Room for offline data caching. The application is built in such a way that whenvever there is a service call, the result will be stored in local database.

The whole application is built based on the MVP architectural pattern.

Application Architecture

The main advantage of using MVP, the itractor will connects to db / network and fetch the data , and it will pass to presenter where business logic is writter , Then presenter will update view accordingly

Programming Practices Followed

a) Android Architectural Components
b) Dagger 2 for Dependency Injection
c) MVP
d) Retrofit with Okhttp
e) Room for data caching
f) JUnit and Mockito for Unit testing
d) RX Java

How to build ?

Open terminal and type the below command to generate debug build

./gradlew assembleDebug

Open terminal and type the below command to generate release build

./gradlew assembleRelease

Test cases

see android test and test packages

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors