The source code in this repo accompanies my article Creating Clean Architecture Multi-Project MVP App.
Here you will find a multi-project single Activity TODO app using Conductor implementing MVP pattern (each Controller
is a View).
The app is configured as multi-project Gradle setup which improves build and testing speed in addition to providing clear isolation between the components of the app:
This setup enables you to swap your backend implementation (for instance, migrate to Firebase or Realm) simply by replacing your data layer module and modifying a dependency in the presentation module. If the data layer changes, domain layer is not affected.
This project aims to maintain high test coverage for all modules.
Unit test code coverage is at 96% (Views are excluded from unit tests since they are rather passive).
Main libraries used for testing are:
Copyright 2017 James Shvarts
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.