https://github.com/faruktoptas/news-mvp
This repository contains a sample RSS reader app with MVP architecture and Dagger2 implementation.
https://github.com/faruktoptas/news-mvp
dagger2 mvp-android mvp-architecture rss-reader unit-testing
Last synced: 16 days ago
JSON representation
This repository contains a sample RSS reader app with MVP architecture and Dagger2 implementation.
- Host: GitHub
- URL: https://github.com/faruktoptas/news-mvp
- Owner: faruktoptas
- License: apache-2.0
- Created: 2017-01-28T16:58:26.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-22T15:49:05.000Z (over 6 years ago)
- Last Synced: 2025-03-24T09:38:25.101Z (about 1 month ago)
- Topics: dagger2, mvp-android, mvp-architecture, rss-reader, unit-testing
- Language: Kotlin
- Homepage: https://medium.com/android-bits/android-app-from-scratch-part-1-model-view-presenter-b5f629f2d9a1#.6uvmiaje2
- Size: 140 KB
- Stars: 38
- Watchers: 5
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sample Android RSS Reader app with MVP
This repository contains a sample RSS reader app with MVP architecture and Dagger2 implementation.
This app is explained in a series of Articles on medium.com1. [Android App From Scratch Part 1 - Model-View-Presenter](https://medium.com/@faruktoptas/android-app-from-scratch-part-1-model-view-presenter-b5f629f2d9a1#.6uvmiaje2)
2. [Android App From Scratch Part 2 - Implementing must have libraries](https://medium.com/@faruktoptas/android-app-from-scratch-part-2-implementing-must-have-libraries-88ed453f3038#.7h0g87oql)
3. [Android App From Scratch Part 3 - Implementing App Logic](https://medium.com/@faruktoptas/android-app-from-scratch-part-3-implementing-app-logic-2b62ae65dcc4#.64g0334u4)
4. [Android App From Scratch Part 4 - Creating unit tests with JUnit](https://medium.com/@faruktoptas/android-app-from-scratch-part-4-creating-unit-tests-with-junit-dd2875802aa0#.g8tv8j5vx)
5. [Android App From Scratch Part 5 - Creating Android Instrumentations tests with Espresso](https://medium.com/android-bits/android-app-from-scratch-part-5-instrumentation-tests-17a886fe9c04)
6. [Android App From Scratch Part 6 - Continuous Integration with Travis-CI](https://medium.com/android-bits/android-app-from-scratch-part-5-continuous-integration-with-travis-ci-1a6d30d22822)# Topics
1. Creating an Android App Architecture
2. Using Model-View-Presenter structure in an Android App
3. Basic usage of Dependency Injection with Dagger2
4. Unit testing with JUnit
5. Android Instrumentation test
6. Continuous Integration implementation with Travis-CI# Used Libraries
1. [Dagger2](https://google.github.io/dagger/)
2. [Retrofit](https://github.com/square/retrofit)
3. [OkHttp Logging Interceptor](https://github.com/square/okhttp/tree/master/okhttp-logging-interceptor)
4. [RetrofitRssConverterFactory](https://github.com/faruktoptas/RetrofitRssConverterFactory)
5. [LeakCanary](https://github.com/square/leakcanary)
6. [Picasso](http://square.github.io/picasso/)
7. [Chrome Custom Tabs](https://developer.chrome.com/multidevice/android/customtabs)
License
=======Copyright 2017 Faruk Toptaş
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 athttp://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.