Inspiration mostly from the good works of Mindorks Open Source Project. But this app is tweaked a little on the navigation front and also houses a few more features, compared to the original app.
This repo is a sample application that implements MVP architecture using RxJava2, Dagger2, Retrofit2, Room and Butterknife. This uses Retrofit and Room library for network calls and database operations respectively. (Original App uses FastAndroidNetworking and GreenDao) Another highlight is that this repo also has Data Persistency unlike the original app.
- What does this app do?
- Quick Glimpse
- Naive Attempt at Animated Vector Drawable
- APIs and Architectures Used
- Library reference resources
To sum up in one line, this app shows news feed(Open Source codes and Developer Blogs) to the consumer. Now, the idea is essentially the same but the manner in which it is served to the Consumer, differs(precisely 3).
- Model View Presenter Architecture
- RxJava/RxAndroid 2 for concurrency
- Dagger2 for managing the dependency tree and also for dependency injection
- Room library from Google's Architecture Components, for database operation
- Retrofit library for network calls
- ButterKnife for View Injections
- Glide for Image Loading
I'm also looking at adding the following Libraries for future iterations:
- LeakCanary
- Mockito
- JUnit
- Bottom Sheets
- Shared Element Transition and Content Transition