This is an Android Studio template for MVP.
It is inspired by u2020-mvp-android-studio-template and follows Antonio Leiva's MVP implementation guide for Android.
Here's the hierarchy it follows:
com.company.app
+-- injection
| - ActivityScope
| - AppComponent
| - AppModule
| - FragmentScope
| - MainViewComponent
| - MainViewModule
+-- interactor
| +-- impl
| - MainViewInteractorImpl
| - BaseInteractor
| - MainViewInteractor
+-- presenter
| +-- impl
| - MainViewPresenterImpl
| - BasePresenter
| - MainViewPresenter
+-- view
| +-- impl
| - BaseActivity
| - BaseFragment
| - MainActivity
| - MainView
| - YourApp
You must use Dagger 2 for dependency injection and AppCompat for annotations and base classes.
Just copy all 3 directories MVPFragment, MVPActivity and MVPBoilerplate to $ANDROID_STUDIO_FOLDER$/Contents/plugins/android/lib/templates/activities/
Just copy all 3 directories MVPFragment, MVPActivity and MVPBoilerplate to $ANDROID_STUDIO_FOLDER$\plugins\android\lib\templates\activities\
First of all, create the base hierarchy and classes using MVP Boilerplate from the root package folder. This needs to be done only once per project:
It will generate an App class that you should use as your Application, an ActivityScope, FragmentScope, AppModule and AppComponent for injection, a BaseActivity, BaseFragment, BasePresenter and BaseInteractor.
Be sure to use the generated
Appas your Application into your manifest!
Then you can create a new MVP Activity. It will create:
- An
Activity - A layout for your Activity
- A
Componentand aModulefor Dagger 2 injection - A
Viewinterface for your Activity - A
Presenterinterface and default implementation class - An
Interactorinterface and default implementation class for your model
It's important that you create it from the root package, otherwise it will re-create the whole MVP hierarchy under your subpackage which is not what you want.
Copyright 2016 Benoit LETONDOR
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.
